Forum Replies Created
-
AuthorPosts
-
Larry James
MemberProblem solved! Upgrading to Lifestyle Pro 3.1 solved my issue. Now I just have to put back my customization's.
Larry James
MemberI have just noticed that I am using v 3.0.0 and the other site uses v 3.1.
For some reason in the Genesis settings I have it checked to "Enable Automatic Updates" but it has not updated. I will try to update manually.Larry James
MemberThanks for your help Sandee. I have another site running the Lifestyle theme. I found this code missing
/* Responsive Menu --------------------------------------------- */ .responsive-menu-icon { cursor: pointer; display: none; text-align: center; } .responsive-menu-icon::before { content: "\f333"; display: inline-block; font: normal 20px/1 'dashicons'; margin: 0 auto; padding: 10px; } .site-header .responsive-menu-icon::before { padding: 0; }
I have added it into the style.css stylesheet but the responsive menu is still not showing.
Even when I copied and pasted the complete style sheet from http://vacuumplus.ca/ the responsive menu does not work.
Larry James
MemberI have solved it Brad. I removed my footer code from Genesis Simple Hooks, and used Genesis Simple Edits instead and it is working now. Thanks for your help.
Larry James
MemberSorry Brad, I do have the code to remove the footer elements, and it is not working for me.
I guess it didn't copy and paste the whole code. Here is the complete code that I have in my Landing Page template
<?php /** * This file adds the Landing template to the Centric Theme. * * @author StudioPress * @package Centric * @subpackage Customizations */ /* Template Name: Landing */ //* Add custom body class to the head add_filter( 'body_class', 'centric_add_body_class' ); function centric_add_body_class( $classes ) { $classes[] = 'centric-pro-landing'; return $classes; } //* Force full width content layout add_filter( 'genesis_site_layout', '__genesis_return_full_width_content' ); //* Remove site header elements remove_action( 'genesis_header', 'genesis_header_markup_open', 5 ); remove_action( 'genesis_header', 'genesis_do_header' ); remove_action( 'genesis_header', 'genesis_header_markup_close', 15 ); //* Remove navigation remove_action( 'genesis_after_header', 'genesis_do_nav' ); //* Remove breadcrumbs remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs' ); //* Remove site footer widgets remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' ); //* Remove site footer elements remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 ); remove_action( 'genesis_footer', 'genesis_do_footer' ); remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 ); //* Run the Genesis loop genesis();
Larry James
MemberI would take a look at the Centric Pro setup instructions. There is screenshot there that shows the exact settings that the demo site uses. (Thats what worked for me) If those are the settings that you have, then I would uninstall the plugin and re-install it.
Larry James
MemberKrista, If you go to the widget area and click the Simple Social Icons wIdget, it will expand and give you the options to change size, colors, and border radius of your icons.
Larry James
MemberThank you anitac. Your suggestions helped. I copied the page-landing.php file and pasted it into the front-page.php file, and then I was able to use a static front page with my logo and I added the nav menu using html in the static page too.
Thanks for your help, it was much easier than trying to edit the front-page.php file.Larry James
MemberUpdate:
I have been able to style the FIRSTNAME and LASTNAME input boxes to match the EMAIL input box, but I could still use some assistance in getting the error messages to display on say page. Thanks.Larry James
MemberThank you, anitac. I found the answer in a comment of the article you linked to.
I added "max_input_vars = 5000" to the bottom of my php.ini file and it worked.
Thanks again.
Larry James
MemberThe tool I used to discover the cloaking problem is found here:
http://www.seotools.com/seo-cloaking-checker/It detects and the css trick as cloaking. When I changed my theme settings to use the text instead of the logo, and then run the cloaking checker the tools tells me I no longer have a cloaking problem.
There is more information on the topic here: http://luigimontanez.com/2010/stop-using-text-indent-css-trick/
I am not sure if using the image inside of the h1 tag is the answer:
<h1><a href="/"><img src="logo.png" alt="My Site Title" /></a></h1>
Would Google read the alt tag as the h1?Larry James
MemberHi Brad. The added the header image in the css did not work for me, but I found a solution. I simply left the color set as default in the dashboard theme settings. I then created new style sheets by doing a search and replace of the default color with the red color. It is not best solution but it works. Thanks for your help.
Larry James
MemberThank you Bill, worked perfectly.
Larry James
MemberThank you John.
-
AuthorPosts