Forum Replies Created
-
AuthorPosts
-
gandrsonMember
Hi -
If I understand what you are asking, I use Siteground's caching plugin and deactivated that to see if it made any difference. It didn't.gandrsonMemberThanks Brad - I see the difference - switched it to the first snippet and it worked perfectly.
GretchengandrsonMemberHi there - Unfortunately, I never received an answer and resolved it by switching to a different slider (Nivo). When I added the new slider, it went to full width immediately.
Best of luck,
GretchengandrsonMemberHi Victor -
I added wp_enqueue_style( 'dashicons' ) into the functions file and am still not seeing the hamburger menu. Any more ideas?gandrsonMemberHi Victor - I tried this, it's very easy and straightforward, but didn't resolve the problem. Maybe it's Foodie Pro, but still looking for ideas. Thanks, Gretchen
June 19, 2016 at 6:41 pm in reply to: Remove white space after front page widgets in Digital Pro #187851gandrsonMemberGot it thanks! I had tried that, but it's .front-page in Digital Pro.
Looks good now.
GretchengandrsonMemberThanks Brad!
gandrsonMemberThanks Brad - I tried that before I wrote this (from a previous post of yours) and it didn't work. However, I used Simple Hooks and put the site description in there and that worked. I was just getting ready to put a "Nevermind, I figured it out message on this one!".
GretchengandrsonMemberNever mind! I figured this out today. Thanks for your help on the other.
GretchengandrsonMemberThank you- it's fixed!
I have 2 more problems if you are interested in helping again.
The first has to do with the responsive menu icon - I can't seem to get it to center. It's floating off to the right.
The other has to do with the feature-home-1 and feature-home-2 widgets. I added a different background (tiled background image) on the smaller screen size and I can't get them to cover 100%. I tried repeat, that didn't work at all. Basically there is a left and right margin that I can't find or figure out.
Thanks again for help with the header.
GretchengandrsonMemberWell duh. Staring at it for quite some time and missed the simplest thing. Everything seems to be working very well now. The only thing that still isn't working is the responsive menu on the max-width 480px. The menu is there, the drop downs work, but there are no pages. I tried to hover thinking that they might be there, but can't see them.
I'm looking at it, but still stumped.Thanks so much for your help with this.
GretchengandrsonMemberThanks Tonya!
gandrsonMemberhttp://staging.hauntedmesadesign.com/
Ok, I put it on a staging site. I appreciate your help.
GretchengandrsonMemberIt's on a development site. Below is the only code in the functions.php that related to pagination and I added it.
//*pagination
add_filter ( 'genesis_next_link_text' , 'sp_next_page_link' );
function sp_next_page_link ( $text ) {
return 'Next Page »';
}add_filter ( 'genesis_prev_link_text' , 'sp_previous_page_link' );
function sp_previous_page_link ( $text ) {
return '« Previous Page';
}This is the only other code I could find - it was in theme defaults.
//* Outreach Theme Setting Defaults
add_filter( 'genesis_theme_settings_defaults', 'outreach_theme_defaults' );
function outreach_theme_defaults( $defaults ) {$defaults['blog_cat_num'] = 5;
$defaults['content_archive'] = 'full';
$defaults['content_archive_limit'] = 0;
$defaults['content_archive_thumbnail'] = 0;
$defaults['image_alignment'] = 'alignleft';
$defaults['posts_nav'] = 'numeric';
$defaults['site_layout'] = 'content-sidebar';return $defaults;
}
It's weird because 'next' works but 'previous' doesn't.
-
AuthorPosts