Forum Replies Created
-
AuthorPosts
-
December 17, 2015 at 6:30 am in reply to: Full Width Template not working after Genesis upgrade #174043
senordeer
MemberJust piping up, I had same issue, on all 125 or so pages :/. The above fix worked for me as well but yeah, was surprised to have to edit core files, will not be updating other sites till fix is in.
May 21, 2015 at 10:24 am in reply to: Display custom menu in header widget as horizontal bar #153105senordeer
MemberHey Jerry you know what I think ended up just moving the primary nav menu, but I did have to do something similar (but not quite exact) on another site and used the following css:
<style> .widget_nav_menu { clear: both; font-size: 14px; line-height: 1; width: 100%; } .widget_nav_menu .menu-item { display: inline-block; text-align: left; } .widget_nav_menu a { color: #FFA291; display: block; font-size: 14px; padding-right: 65px; padding-left:65px; padding-top: 20px; padding-bottom: 20px; text-transform: uppercase; border:2px solid #FFA291; } .widget_nav_menu a:hover, .widget_nav_menu .current-menu-item > a, .widget_nav_menu .sub-menu .current-menu-item > a:hover { color: #1a212b; } .widget_nav_menu .sub-menu { left: -9999px; opacity: 0; position: absolute; -webkit-transition: opacity .4s ease-in-out; -moz-transition: opacity .4s ease-in-out; -ms-transition: opacity .4s ease-in-out; -o-transition: opacity .4s ease-in-out; transition: opacity .4s ease-in-out; width: 200px; z-index: 99; } .widget_nav_menu .sub-menu a { background-color: #fff; border: 1px solid #eee; border-top: none; font-size: 12px; padding: 20px; position: relative; width: 200px; } .widget_nav_menu .sub-menu .sub-menu { margin: -55px 0 0 199px; } .widget_nav_menu .menu-item:hover { position: static; } .widget_nav_menu .menu-item:hover > .sub-menu { left: auto; opacity: 1; } .widget_nav_menu .sub-menu li { margin-left:0px; } </style>
senordeer
MemberHey Susan thank you for your service here. I actually did not ever get resolution on this, I found something that I could work with but not the exact solution to the above issue, however, I can work with an alternative that I came up with so I will close the topic, thank you.
senordeer
MemberYeah I never thought about using a custom menu to replace a search before, but if you are very specific in what items you want the user to be able to search, it actually kind of works, I'll probably use this as a workaround again. Thank you again for the time 🙂
senordeer
MemberThank you so much Lauren! You are right, I think I was making too much of this. I ended up just adding new menus in the dashboard and styling them, I don't know why I had it in my head that I had to register new. I appreciate the clarity and feedback!
senordeer
MemberAnd to add to this post, same topic, I did add a secondary navigation menu as a custom menu in a homepage widget, but it does not have the same styling as the primary nav. I don't care about color etc. but I would like the secondary menu items to appear on hover. I could even add a mega menu here, but the goal is to create a dropdown menu that can appear in a widgeted area. Thanks!
senordeer
MemberYes! That is perfect I am sorry I overlooked the link, this is exactly what I was looking for, your help is much appreciated!
senordeer
MemberHey Brad thanks so much, I was sort of thinking about PHP, not my forte, do you have a little bit of direction on that? I have already added some php to the functions to change the text on the link:
add_filter( 'excerpt_more', 'genesischild_read_more_link' ); //* Modify the speak your mind title in comments add_filter( 'comment_form_defaults', 'sp_comment_form_defaults' ); function sp_comment_form_defaults( $defaults ) { $defaults['title_reply'] = __( 'Leave a Comment' ); return $defaults; }
but that is all I have right now
senordeer
MemberThanks so much yes that was the code in the original theme, I actually figured it out and am posting here, thanks again for the time!
/* iPad Portrait */ @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) { .content-sidebar #content, .sidebar-content #content { width: 600px; } .post { width:600px; } #sidebar { width:250px; } }
senordeer
MemberActually it is not a responsive theme the dimensions are set to fixed width which is fine it's just the portrait orientation on the ipad, this is the basic layout CSS for that area:
/** Do not remove this line. Edit CSS below. */ .sidebar { width:280px; background:none; padding-left:5px; padding-right:5px; border-left: 1px solid #009DDC; } .sidebar p { width:240px; } .tagcloud { width:250px; } #sidebar.sidebar.widget-area #widget_sp_image-2.widget.widget_sp_image { margin-bottom:-5px; margin-top:-40px; } #sidebar.sidebar.widget-area #widget_sp_image-3.widget.widget_sp_image { margin-bottom:0px; margin-top:-40px; } #sidebar.sidebar.widget-area #widget_sp_image-4.widget.widget_sp_image { margin-bottom:0px; margin-top:-33px; } #sidebar.sidebar.widget-area #widget_sp_image-5.widget.widget_sp_image { margin-bottom:0px; margin-top:-33px; } #sidebar.sidebar.widget-area #widget_sp_image-6.widget.widget_sp_image { margin-bottom:0px; margin-top:-33px; } /* Content ------------------------------------------------------------ */ #content { float: left; padding: 10px 0 20px; width:700px; } .sidebar-content #content, .sidebar-sidebar-content #content { float: right; } .content-sidebar #content, .sidebar-content #content { width: 690px; } .full-width-content #content { border: none; width: 900px; } .page-template-landing-php #content { margin: 0 auto; width: 680px; } .post { margin: 0 0 40px; overflow: hidden; } /* Content-Sidebar Wrap ------------------------------------------------------------ */ #content-sidebar-wrap { float: left; width: 630px; } .page-template-landing-php #content-sidebar-wrap { margin: 0 auto; float: none; width: 700px; }
But I have tried adjusting all areas of this in all different ways for the ipad and the sidebar still falls below the content, even when I decrease the size. It's so weird.
senordeer
MemberHey Brad thanks so much. If I remove the home.php then I would lose the right and left featured widget areas, etc? I was hoping to add a blog feed maybe above where the Genesis Slider widget area lives.
August 6, 2014 at 8:23 am in reply to: change header image on different categories Serenity theme #117342senordeer
MemberOh you know what, never mind, that got me thinking, I just added
/** Add custom header support */ add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 100, 'textcolor' => '444', 'admin_header_callback' => 'minimum_admin_style' ) );
to add custom header support to the theme and then activated WP Display Editor, thanks again for the help!
August 6, 2014 at 8:11 am in reply to: change header image on different categories Serenity theme #117340senordeer
MemberHey Brad I definitely would use WP Display Header but on the Serenity theme, it does not support Custom Headers and I get an error message when I try to activate the plugin. Is there a straight CSS solution? It seems so simple to me but nothing I am trying works.
senordeer
MemberBeautiful, thanks for pointing that out, it was indeed something in one of the posts, I just have to figure out which one but that was the issue. Thank you!
April 21, 2014 at 5:18 pm in reply to: NextGen Gallery lightbox effect not working with Genesis theme #101743senordeer
MemberI actually did, I determined that it was some code that I had added to footer that was conflicting, thank you for checking, marking topic as resolved!
senordeer
MemberHi Mayur thanks for the response, got that, I think the issue was that some of these posts that are not showing images were imported from another blog and I haven't cached the images so they are not appearing, appreciate your time!
senordeer
Memberthat was it. I know image maps are lame it was just quick and easy to set up. Okay excellent, now we know, sorry for all the trouble I should have checked that first, thanks so much!
senordeer
MemberOkay no problem, I actually deleted the offending contact form plugin, then added contact form 7 and it still didn't work, then I deleted the whole shortcode from the widget so now I just have an image there (just text not an image widget), still having the widget title appear above, very strange. I know I cleared out all of my CSS and the CSS that is there now is straight up from the original theme file.
senordeer
MemberHey there, thanks for the tip, I replaced it with a text widget, the text does have a shortcode in it, but now the widget title is appearing in the area and the actual text is appearing below?
senordeer
MemberActually nevermind, client doesn't want the signature after all. Thanks for the help! I really appreciate!
-
AuthorPosts