Forum Replies Created
-
AuthorPosts
-
kathyosborneParticipant
Thanks, Victor. Not sure what happened to cause those errors, but will look into it more. Appreciate the feedback!
Kathy
kathyosborneParticipantTo clarify - I want both the logo and menu to stay static. Even on mobile. When I try applying it to the title-area and the widget individually the logo disappears even when I put positions...
Thanks,
KathykathyosborneParticipantHi Victor,
Thanks for responding. I had tried changing 'position: fixed;' to the .site-header and when I do, the title area and widget menu area collapse to the left side of the website. Any other advice?
Thanks!
KathyJanuary 17, 2018 at 8:44 am in reply to: Left Justify Blog Posts / Keep page Titles Centered #215467kathyosborneParticipantAHHH! Duh!!! Thank you!!!
October 11, 2017 at 2:20 pm in reply to: Altitude Pro Adding Second Line to Header Menu / Footer Widget only on home page #212436kathyosborneParticipantThis is perfect! Thank you so much!!!
October 11, 2017 at 9:35 am in reply to: Altitude Pro Adding Second Line to Header Menu / Footer Widget only on home page #212416kathyosborneParticipantI've moved the site from local to online:
http://www.staceyjaswad.com/newsite
If that helps better than screen shots.
Thanks!kathyosborneParticipantYESSSSSSSSS!!! Thank you!!!
kathyosborneParticipantI fixed the problem because I missed adding the "#" to the link. Adding this back in the menu link and it worked great.
September 29, 2017 at 7:08 am in reply to: Upgraded Genesis and Background Video isn't working now #211998kathyosborneParticipantIt does seem to be playing now. Strange. However the placeholder image isn't showing up - its showing a grey background instead of the placeholder image... Any thoughts on that?
When I inspected the page, I see the background color here, but it didn't show that prior to upgrading...
This is the code I have in there for the video - the link to the placeholder image is correct...
echo do_shortcode('[vidbg container="#front-page-2" mp4="http://vobuzzweekly.com/wp-content/uploads/2017/03/Buzz-Opening_v01-H.264-800Kbps-Streaming.mp4" webm="http://vobuzzweekly.com/wp-content/uploads/2017/03/Buzz-Opening_v01-H.264-800Kbps-Streaming.webm" poster="http://vobuzzweekly.com/wp-content/uploads/2017/03/VOBuzz-Video-Fallack.jpg" loop="false" overlay="false" overlay_color="#000" overlay_alpha="0.3" muted="false" autoplay="true"]'); }
kathyosborneParticipantThank you for the insight!
kathyosborneParticipantYep, like that. The navigation links (Home, Videos, Contact) are linked to the different sections on the home page, but it's jumping...
Thanks!
kathyosborneParticipantBumped up the version and it didn't change anything.
I moved the site over to my account:
http://www.kathyosborne.com/jennytest/And the most recent changes show on all browsers. However, if I make any style changes they don't take. Not even on Chrome now.
Both sites are on Bluehost, so I moved the site to another hosting to see if it was that. http://www.kathyosbornedesign.com/
And the same thing is happening. Any new style changes I test will not show.
But all content changes show. So text changes, deactivating plugins, etc.
Its strange because I use the Altitude theme all.the.time. I am currently building another site with it and am not having any issues. Thinking I had done something to break it, I had reinstalled a new version and added all my styling slowly back, but its the same thing.
kathyosborneParticipantAlso, if this helps.
This is what it's supposed to look like (and does in Chrome)
And this is how it's looking elsewhere. Even when checking on new computers that haven't visited it before.
kathyosborneParticipantSure, I'm sorry. I make a lot of font and color changes mainly, among others, but here is an example. Let me know if you need any other info.
This is older style that is showing:
.solid-section {
background-color: #fff;
}And the new change should be:
.solid-section {
background-color: #8bba36;
}kathyosborneParticipantWorked perfect! Thank you so much of your help.
KathykathyosborneParticipantHi Victor!
When I was trying to figure out why, I took a look at the home page and didn't really see a clear way for me to do it. I'm still early in the hook/action learning process so I didn't want to break anything.
I was using the Genesis Visual Hook Guide plugin and to add it in along with this tutorial as a guide: https://wpbeaches.com/add-full-width-row-footer-widgets-genesis-child-theme/
The 5 was just an attempt to get it to show, but it didn't work with or without it.
I'm still new to action hooks so what I'm doing might not make sense :0
Is there a good resource for me to learn about editing the front-page.php?
thanks so much,
kathykathyosborneParticipantIn addition, how can I make these areas 100% in width> not the 4 columns... ?
April 26, 2017 at 6:45 am in reply to: Enterprise Pro: Remove Footer Widget from Interior Pages #205338kathyosborneParticipantPerfect! Thank you!!!!
April 26, 2017 at 5:49 am in reply to: Enterprise Pro: Remove Footer Widget from Interior Pages #205336kathyosborneParticipantThanks guys!
Victor, I added the code and it seems to have removed it from all the pages, including the Home page.
Any ideas?
Thanks!
KathykathyosborneParticipantI'm not sure which template file I would edit, but I did find this fucntions code, but I'm not sure if it could work with Genesis? And if so what I would place in there for body_class, etc...
add_filter('body_class','body_class_section');
function body_class_section($classes) {
global $wpdb, $post;
if (is_page()) {
if ($post->post_parent) {
$parent = end(get_post_ancestors($current_page_id));
} else {
$parent = $post->ID;
}
$post_data = get_post($parent, ARRAY_A);
$classes[] = 'parent-' . $post_data['post_name'];
}
return $classes;
} -
AuthorPosts