• 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

Lorraine

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 - 1 through 20 (of 45 total)
1 2 3 →
  • Author
    Posts
  • September 1, 2015 at 2:49 pm in reply to: Altitude Pro – Menu bar colour change #164240
    Lorraine
    Participant

    You are very welcome - 🙂

    September 1, 2015 at 12:46 pm in reply to: Remove post footer small footer border on archive page #164234
    Lorraine
    Participant

    Hi Sebastian, if you find the selector for the archive pages you can use that to target the entry footer. You can use that to control any part of your theme. Hope it works...

    .archive .entry-footer::before {
    border: none;
    }
    September 1, 2015 at 12:41 pm in reply to: Altitude Pro – Menu bar colour change #164233
    Lorraine
    Participant

    Hi, I can see that you have added the colour to the site header in the CSS which is correct but this code here is overriding it.

    .featured-section .site-header {
        background-color: transparent;
    }
    

    Quick fix would be either to remove that CSS if it doesn't cause issues elsewhere or you could be naughty and change the declaration of your colour to this...

    .site-header {
        background-color: #6e6702!important;

    Good Luck

    March 20, 2015 at 4:16 am in reply to: Education Pro Custom Logo/Header #145004
    Lorraine
    Participant

    Hi, you need to adjust the minimum height of the header as you dont have anything else increasing it. Changing as below solves the issue.

    .site-header {
      background-color: #fff;
      border-top: 3px solid #e44a3c;
      box-shadow: 0 3px rgba(70, 70, 70, 0.05);
      min-height: 180px;
    }
    March 19, 2015 at 8:39 am in reply to: Media queries not picking up #144940
    Lorraine
    Participant

    Hi Victor - here it is. http://217.199.187.190/comtrol.co.uk/

    January 6, 2015 at 2:08 am in reply to: Primary Sidebar Color – Metro Pro #136170
    Lorraine
    Participant

    Hi, I have checked your CSS and I can't see the changes. If you PM me I can sort for you. I can see you have WP-Super Cache, could you clear the cache and I can see if I'm looking at an old page.

    January 4, 2015 at 10:47 am in reply to: Primary Sidebar Color – Metro Pro #136029
    Lorraine
    Participant

    Hi there - try this. You are left with padding issues after changing the background colour - so I have popped a little padding in too. The .styles is only in the head of the doc and won't work in the stylesheet.

    Take a back-up of the file if you are unsure - find this and change to....

    .sidebar-primary {
    float: right;
    width: 332px;
    }

    to

    .sidebar-primary {
    float: right;
    width: 332px;
    padding: 20px;
    background: #0a0e11;
    text-transform: uppercase;
    }
    

    For the under-line try adding this....

    #menu-new-menu ul li a {
    text-decoration: none;
    }

    Let me know if it works.

    January 4, 2015 at 10:28 am in reply to: Classes being removed: sf-js-enabled sf-arrows #136026
    Lorraine
    Participant

    You should be able to use the normal custom menu widget which will then be assigned a class according to the widget. This is some code from a live site:

    <section id="nav_menu-2" class="widget widget_nav_menu"><div class="widget-wrap"><nav class="nav-header" role="navigation" itemscope="itemscope" itemtype="http://schema.org/SiteNavigationElement"><ul id="menu-main-menu" class="menu genesis-nav-menu"><li id="menu-item-104" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-104">LINKS HERE...

    I think with what's above you could possibly achieve what you are trying to do below as the menu is assigned it's own ID.

    'container' => 'nav',
    						'container_class' => 'cbp-spmenu cbp-spmenu-horizontal cbp-spmenu-top',
    						'container_id' => 'cbp-spmenu-s3',
    						'menu_class' => 'xyz js-superfish sf-js-enabled sf-arrows genesis-nav-menu menu'

    I sometimes work with graphic designers who give some corking navigation layouts and I haven't been beaten yet unless it ubermenu style. http://www.gmhcashregisters.co.uk/ This has some different styles here...

    October 2, 2014 at 9:24 am in reply to: 404 on front page! #126552
    Lorraine
    Participant

    Looks fine, is this resolved

    October 2, 2014 at 9:22 am in reply to: How to turn a submit button in contact form into a link to another page #126551
    Lorraine
    Participant

    Gravity forms has a re-direct link under confirmations, I haven't tried it but it is worth some research.

    October 2, 2014 at 9:17 am in reply to: responsive issues with product and cart page in woocommerce #126549
    Lorraine
    Participant

    Apologies, I get really poor mobile reception and gave up yesterday, I'll try again when I have wifi rather than hard wired as I am in the day. I', UK so not too long.

    September 29, 2014 at 11:48 pm in reply to: responsive issues with product and cart page in woocommerce #126222
    Lorraine
    Participant

    I don't use the custom CSS so I'm not sure how the media queries are handled. Try placing what's below at the bottom of the code.

    @media only screen and (max-width: 480px) {
                  .woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product {
    width: 100%;
                  }
    }
    September 29, 2014 at 11:17 am in reply to: responsive issues with product and cart page in woocommerce #126176
    Lorraine
    Participant

    Hiya, you just need to set this in the media queries at the bottom - if there is a setting for under 400px approx pop it in there. Just delete it from the main css and the default will come back. If you are not sure about the CSS take a copy of the style sheet before you tinker.

    .woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product {
    width: 100%;
    }

    you'll find it near the bottom - place inside soemthing like this -

    @media only screen and (max-width: 480px) {
    
    September 29, 2014 at 2:21 am in reply to: Widget editor no longer works #126120
    Lorraine
    Participant

    You are welcome Bas

    September 29, 2014 at 2:17 am in reply to: responsive issues with product and cart page in woocommerce #126119
    Lorraine
    Participant

    Having a look you have 2 columns displaying in the cart under 400px. It may be better to set a media query of 100% for the product for a single column or adjust the CSS so that the padding and font is slightly smaller to stop the overflow.

    .woocommerce.product-columns-3 ul.products li.product, .woocommerce-page.product-columns-3 ul.products li.product {
    width: 100%;
    }

    I have found on mobiles that rendering is different at times depending on how you refresh.

    Just an observation, you have the cart buttons at different height when you have a line of text that goes over
    . I tend to set a height to the text i.e.

    .woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 {
    height: 50px;
    }

    I'm not sure of this is the best fix but it it's what I would do...

    September 28, 2014 at 3:57 am in reply to: responsive issues with product and cart page in woocommerce #126043
    Lorraine
    Participant

    I assume that you haven't altered any CSS that may be picked up in the cart.

    September 27, 2014 at 9:29 am in reply to: Widget editor no longer works #125948
    Lorraine
    Participant

    It's a rough work around but have you tried going to screen options in the top right of the screen --> Enable accessibility mode when you are in the widgets screen.

    You could try switching off your plugins and seeing if one is causing it. I would take a full back up of your files and database too before updating in future just in-case it happened at an update you want to be able to recover and update again.

    September 27, 2014 at 9:22 am in reply to: responsive issues with product and cart page in woocommerce #125946
    Lorraine
    Participant

    Have you installed Genesis Woo-Connect?

    September 19, 2014 at 11:18 am in reply to: Adding a div #125070
    Lorraine
    Participant

    Could you use structural wraps to do it? I normally use it say if I want to have an area with a different background or to go full width.

    June 14, 2014 at 11:30 am in reply to: Creating a Home Page Template #109741
    Lorraine
    Participant

    You should be looking at the template file the client created. This would be a copy of home.php.

    This is what calls the loop, you could try adding manually. I haven't tested this and can't say for sure but that is where I would start playing...

    add_action('genesis_loop', 'genesis_do_loop');

    Or yesterday I created a template using

    <div class="entry-content">
        <?php the_content(); ?>
     </div>'; 

    http://codex.wordpress.org/The_Loop This should answer a few questions, as will http://codex.wordpress.org/Page_Templates

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 45 total)
1 2 3 →

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