Forum Replies Created
-
AuthorPosts
-
July 11, 2018 at 10:12 am in reply to: Override the .entry-content ol code, in Executive theme #221588JeannieParticipant
Wow Victor, that worked like a charm. You are my knight! Thanks so much.
JeannieParticipantThank you Brad. Really appreciate you sharing this. Will give it a shot!
JeannieParticipantHi Ginger,
I decided to add the code//* Add support for 4-column footer widgets
add_theme_support( ‘genesis-footer-widgets’, 4 );to the Theme Functions file. It worked like a charm.
Thanks for getting me on the right track!
Best
JeannieJeannieParticipantI wish it was so, but there's no Footer 4. It could be what I did or didn't do in the functions.php file.
//* Add support for 3-column footer widgets
add_theme_support( 'genesis-footer-widgets', 3 );//* Add support for 4-column footer widgets
add_theme_support( 'genesis-footer-widgets', 4 );Should I delete the 3-column info?
JeannieParticipantHi Ginger,
Thanks for the css guidance! I've added .footer-widgets-4 and changed the width to 25%. Now I see the space for a fourth column but on the Widgets page it still only shows Footer 1, Footer 2, and Footer 3. Is there another step I need to take to get Footer 4 to show up?
JeannieParticipantNeeded to fix the html code in Footer Widget 1. That did the trick.
JeannieParticipantThat's what wierd, I didn't. Here's the code from the function.php file.
//* Customize the credits
add_filter( 'genesis_footer_creds_text', 'sp_footer_creds_text' );
function sp_footer_creds_text() {
echo 'Copyright © ';
echo date('Y');
echo ' – All Rights Reserved – Steinway Society of the Bay Area | 2055 Junction Avenue, Suite 100 | San Jose, CA 95131 | (408) 295-6500';
} -
AuthorPosts