Forum Replies Created
-
AuthorPosts
-
odnt
MemberThanks Terry! That works well. I had to resize the nav, but that's simple stuff.
Cheers,
-Rickodnt
MemberI'd like to match the proportion, as in a percentage value. For example, 80 percent of the window on any device.
odnt
MemberThanks Anita. I'll need to change this default design to something that's more consistent across all platforms.
odnt
MemberMy website content (still in development) works the same as the theme demo. On two mobile devices (Nexus tablets) and my Samsung phone, the quote symbol floats above the content. On desktops, it looks fine.
odnt
Memberfunctions.php
odnt
MemberThanks Victor!
odnt
MemberI tried putting .genesis-nav-menu a:hover {color: red;} at the end of the theme's style.css and at the end of Additional CSS in the Customizer. Neither one worked. The only way to get the red hover color is to use the !important declaration, as you suggested.
odnt
MemberThanks Henrik! That works, even though I haven't had this issue with other Genesis themes.
odnt
MemberThanks Victor. Use this URL:
https://www.electbeachpace.com/Here's the setting I have in Additional CSS:
.genesis-nav-menu a:hover { color: red; }odnt
MemberThanks Brad!
odnt
MemberThanks Brad! 7 days seems like a good choice.
odnt
MemberYou can disable this new feature:
Users > Your Profile > Syntax Highlighting > Disable syntax highlighting when editing code
odnt
MemberFound it. Thanks Victor!
odnt
MemberHere's a bare-bones installation of Outreach PRO using the search form as the Navigation Extra in the Genesis Theme Settings. The search form disappears when the window gets smaller than 450px (approx.) wide.
odnt
MemberI should add one more piece of info: the static page failure noted above occurs whenever any of the Front Page widgets include content. If all of the Front page widgets are empty, then the static page selection works okay. This is the only theme I've seen that has this behavior.
odnt
MemberThanks for your follow-up. When I remove the code, the navigation is removed altogether. I don't see it anywhere on the page.
odnt
MemberI contacted the theme developer regarding this issue. Here's his response:
"The featured image is hard coded to show up this way in Showcase Pro. It does not currently support the sizing and alignment to the right or left. I will definitely be working on adding that functionality with subsequent releases!"
odnt
MemberI want to use the footer navigation in the footer, the header navigation in the header, and an additional navigation under the header.
Thanks!odnt
MemberOkay, thanks Brad. You've provided a better understanding about what the code is designed to do.
odnt
MemberHere's what I added to the bottom of my functions.php file:
//* Modify the header URL - HTML5 Version add_filter( 'genesis_seo_title', 'child_header_title', 10, 3 ); function child_header_title( $title, $inside, $wrap ) { $inside = sprintf( '<a href="http://www.rickpaulson.com/development/aspire/" title="%s">%s</a>', esc_attr( get_bloginfo( 'name' ) ), get_bloginfo( 'name' ) ); return sprintf( '<%1$s class="site-title">%2$s</%1$s>', $wrap, $inside ); } -
AuthorPosts