• Skip to main content
  • Skip to forum navigation

StudioPress

  • Shop for Themes
  • My StudioPress

Forum navigation

  • Home
  • General Genesis Discussions
  • StudioPress Themes
  • Genesis Blocks
    • Genesis Blocks
    • Genesis Custom Blocks
  • Retired Themes
  • FAQs
  • Forum Rules
  • Internationalization and Translations
  • Forum Bugs and Suggestions
  • Forum Log In

Are You Using The WordPress Block Editor?

Genesis now offers plugins that help you build better sites faster with the WordPress block editor (Gutenberg). Try the feature-rich free versions of each plugin for yourself!

Genesis Blocks Genesis Custom Blocks

senordeer

Welcome!

These forums are for general discussion on WordPress and Genesis. Official support for StudioPress themes is offered exclusively at My StudioPress. Responses in this forum are not guaranteed. Please note that this forum will require a new username, separate from the one used for My.StudioPress.

Log In
Register Lost Password
  • Profile
  • Topics Started
  • Replies Created
  • Engagements
  • Favorites

Forum Replies Created

Viewing 20 posts - 21 through 40 (of 55 total)
← 1 2 3 →
  • Author
    Posts
  • December 17, 2015 at 6:30 am in reply to: Full Width Template not working after Genesis upgrade #174043
    senordeer
    Member

    Just 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 #153105
    senordeer
    Member

    Hey 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>
    May 10, 2015 at 4:03 pm in reply to: Customize post meta when using Genesis Simple Hooks #151592
    senordeer
    Member

    Hey 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.

    February 3, 2015 at 8:24 pm in reply to: Add 5 custom menus to Agentpress theme #139586
    senordeer
    Member

    Yeah 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 🙂

    February 3, 2015 at 8:15 pm in reply to: Add 5 custom menus to Agentpress theme #139584
    senordeer
    Member

    Thank 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!

    February 2, 2015 at 4:12 pm in reply to: Add 5 custom menus to Agentpress theme #139449
    senordeer
    Member

    And 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!

    October 28, 2014 at 6:01 am in reply to: Change position of Read More link #129551
    senordeer
    Member

    Yes! That is perfect I am sorry I overlooked the link, this is exactly what I was looking for, your help is much appreciated!

    October 27, 2014 at 12:35 pm in reply to: Change position of Read More link #129462
    senordeer
    Member

    Hey 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

    October 6, 2014 at 2:39 pm in reply to: sidebar falling below content ipad prose theme #126946
    senordeer
    Member

    Thanks 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;
    }
    }
    October 6, 2014 at 1:18 pm in reply to: sidebar falling below content ipad prose theme #126939
    senordeer
    Member

    Actually 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.

    August 19, 2014 at 8:58 am in reply to: Add blog posts to Serenity theme #119772
    senordeer
    Member

    Hey 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 #117342
    senordeer
    Member

    Oh 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 #117340
    senordeer
    Member

    Hey 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.

    June 3, 2014 at 10:00 am in reply to: sidebar appearing below posts on blog page #107960
    senordeer
    Member

    Beautiful, 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 #101743
    senordeer
    Member

    I 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!

    March 27, 2014 at 8:34 am in reply to: Show Featured Image on category page? #96945
    senordeer
    Member

    Hi 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!

    March 3, 2014 at 5:03 pm in reply to: Parallax Pro Theme widget section background problem #93275
    senordeer
    Member

    that 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!

    March 3, 2014 at 2:53 pm in reply to: Parallax Pro Theme widget section background problem #93262
    senordeer
    Member

    Okay 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.

    March 3, 2014 at 2:25 pm in reply to: Parallax Pro Theme widget section background problem #93258
    senordeer
    Member

    Hey 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?

    January 13, 2014 at 4:21 pm in reply to: Reposition post signature in post footer #85061
    senordeer
    Member

    Actually nevermind, client doesn't want the signature after all. Thanks for the help! I really appreciate!

  • Author
    Posts
Viewing 20 posts - 21 through 40 (of 55 total)
← 1 2 3 →
« Previous Page

CTA

Ready to get started? Create a site or shop for themes.

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2025 WPEngine, Inc.

Products
  • Create a Site with WP Engine
  • Shop for Themes
  • Theme Features
  • Get Started
  • Showcase
Company
  • Brand Assets
  • Terms of Service
  • Accptable Usse Policy
  • Privacy Policy
  • Refund Policy
  • Contact Us
Community
  • Find Developers
  • Forums
  • Facebook Group
  • #GenesisWP
  • Showcase
Resources
  • StudioPress Blog
  • Help & Documentation
  • FAQs
  • Code Snippets
  • Affiliates
Connect
  • StudioPress Live
  • StudioPress FM
  • Facebook
  • Twitter
  • Dribbble