• 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

JestersTear

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 29 total)
1 2 →
  • Author
    Posts
  • November 12, 2013 at 11:30 am in reply to: Eleven40 Pro Nav Bar Height #72523
    JestersTear
    Participant

    min-height only changes the minimum height of what you're targeting, ie it will never be shorter than 40px, but it can always be taller if it needs to be. You would have to use height if you wanted to specify a fixed height, or max-height if you want it to be no taller than X amount of px.

    This poses the problem of the site's name being in two lines and therefore getting cut off. To fix that you'd need to find .title-area and, where it says width: 320px; change the width size so that two lines can become one.

    Hope this helps!


    Monica | jesterstear on twitter | monicaguerraleiria.com

    November 12, 2013 at 11:23 am in reply to: Problem with navigation #72521
    JestersTear
    Participant

    First of all you need to clear all floats on your secondary navigation bar so that it doesn't feel tempted to occupy more than what it should. Find .nav-secondary { and add clear: both; to it as in the example below:

    .nav-secondary { 
    	clear: both;
    }

    (Please add clear: both; to the rest of the code that's under .nav-secondary {, don't delete what's already there.

    After that, if you want the space next to the primary navigation to show the background, you need to find .site-container { and remove the line that says background: #fff;. Now the rest of your site is transparent so, to bring the white back in, add background: #fff; to .site-inner { and you should be good.

    Let me know if you run into any issues!


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 20, 2013 at 1:44 pm in reply to: Help Needed #21761
    JestersTear
    Participant

    You're welcome Thomas. As to me being quick, you might not realise this, but this isn't an official StudioPress support forum, and I (and about 99% of the people who are here helping out) am not a StudioPress employee. We're StudioPress clients (like yourself) and aficionados who like to help out whenever possible.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 20, 2013 at 1:27 pm in reply to: Help Needed #21749
    JestersTear
    Participant

    First of all, you should space out your code. Right now you have

    .genesis-nav-menu a {
    display: block;
    padding: 24px 20px;
    padding: 1.5rem 1.25rem;
    position: relative;
    }.genesis-nav-menu a:hover {
    background: #000;
    color: #fff; }

    Hit enter twice between the first closing bracket and the dot so that you have:

    .genesis-nav-menu a {
    display: block;
    padding: 24px 20px;
    padding: 1.5rem 1.25rem;
    position: relative;
    }

    .genesis-nav-menu a:hover {
    background: #000;
    color: #fff;
    }

    Now, change the last bit of code to read:

    .genesis-nav-menu a:hover,
    .genesis-nav-menu li a:hover,
    .genesis-nav-menu li:hover a {
    background: #000;
    color: #fff;
    }

    and you should have white links on a black background.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 19, 2013 at 5:09 pm in reply to: Independent Image Carousel in widget #21496
    JestersTear
    Participant

    You're very welcome, glad I could help! 🙂


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 18, 2013 at 2:00 pm in reply to: where to change 'read more' colour? #21076
    JestersTear
    Participant

    If you search for all instances of #e04b4b and replace them with your desired colour, all the reds should change.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 18, 2013 at 1:53 pm in reply to: Mouse over colour #21073
    JestersTear
    Participant

    Just below that entire block (after the closing bracket) add the one I gave you. 🙂


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 18, 2013 at 10:32 am in reply to: Independent Image Carousel in widget #21018
    JestersTear
    Participant

    Try using the Cyclone Slider 2 plugin, it should fit all your needs. 🙂


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 18, 2013 at 10:27 am in reply to: where to change 'read more' colour? #21016
    JestersTear
    Participant

    In your style.css find all instances of .executive-red that have the red you want to replace (the hex code you'll be looking for is #e04b4b) and insert in your desired hex code. So, basically, find and replace #e04b4b with the red you do want.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 18, 2013 at 10:23 am in reply to: Mouse over colour #21015
    JestersTear
    Participant

    Style .genesis-nav-menu a:hover and you'll be good to go. For example:

    .genesis-nav-menu a:hover {
    background: #000;
    color: #fff;
    }

     


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 17, 2013 at 8:31 pm in reply to: Customize Footer Metro Theme #20920
    JestersTear
    Participant

    I was trying to help before realising that it's the forum hopelessly mangling code, instead of a specific mistake in the code itself. Will come back if I think of something useful!


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 17, 2013 at 12:16 pm in reply to: Metro Theme: Change Hover Color on Social Links #20847
    JestersTear
    Participant

    a:hover.social-buttons {
    color: #333;
    }

    😉


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 5, 2013 at 12:45 pm in reply to: Multisite: Have subsites but one of which I want unique CSS for #18256
    JestersTear
    Participant

    Yes, Jetpack is connected to WordPress.com on a subsite-by-subsite basis. I'm by no means saying this is the only solution, but it was the first that popped to mind. I'm in the process of creating my own multisite network, so if I come across a better way I'll revisit this thread. 🙂


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 5, 2013 at 2:41 am in reply to: Multisite: Have subsites but one of which I want unique CSS for #18157
    JestersTear
    Participant

    Have you considered activating Jetpack and using its Edit CSS module? It seems like the easy solution here, although I'd advise that you copied your edits onto a text file as backup.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    February 2, 2013 at 12:53 pm in reply to: Everything Is Responsive Except Header Image – What Gives? #17390
    JestersTear
    Participant

    Nick The Geek's Genesis Responsive Header plugin should solve all your woes. 🙂


    Monica | jesterstear on twitter | monicaguerraleiria.com

    January 28, 2013 at 10:47 pm in reply to: Problem! Problem!! Problem!!! #15895
    JestersTear
    Participant

    🙂 You're very welcome, glad I could help!


    Monica | jesterstear on twitter | monicaguerraleiria.com

    January 28, 2013 at 10:00 pm in reply to: Problem! Problem!! Problem!!! #15881
    JestersTear
    Participant

    To reduce the body font: reducing this one (I've bolded the relevant selector and have the font size in red) should do the trick.

    body,
    h1,
    h2,
    h2 a,
    h2 a:visited,
    h3,
    h4,
    h5,
    h6,
    p,
    select,
    textarea {
    color: #333;
    font-family: ‘Open Sans’, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    text-decoration: none;
    }

     

    To reduce the post's title change:

    h1, h2, h2 a, h2 a:visited {
        font-size: 48px;
    }

    Neither of these will help with your table problem, though, because your Order Now images are too big.


    Monica | jesterstear on twitter | monicaguerraleiria.com

    January 13, 2013 at 11:21 pm in reply to: Header Image link to homepage #11755
    JestersTear
    Participant

    Try removing what you tried to do to the header - ie remove:

    /** Remove the site title */
    remove_action( 'genesis_site_title', 'genesis_seo_site_title' );

    /** Remove the site description */
    remove_action( 'genesis_site_description', 'genesis_seo_site_description' );

    /** Modify the header URL */
    add_filter('genesis_seo_title', 'custom_seo_title', 10, 3);
    function custom_seo_title($title, $inside, $wrap) {
    $inside = sprintf( '<a href="http://www.rcmedreview.com" title="%s">%s</a>', esc_attr( get_bloginfo('name') ), get_bloginfo('name') );
    $title = sprintf('<%s id="title">%s</%s>', $wrap, $inside, $wrap);
    return $title;
    }

    then, in the header options, tell it to not display text along with your image, and see if that helps.

     


    Monica | jesterstear on twitter | monicaguerraleiria.com

    January 13, 2013 at 9:43 pm in reply to: Header Image link to homepage #11733
    JestersTear
    Participant

    That setting only shows up when the header *isn't* uploaded through Appearance (otherwise it should be automatic). Do you have a link to your site/can you post the contents of your functions.php?


    Monica | jesterstear on twitter | monicaguerraleiria.com

    January 13, 2013 at 9:19 pm in reply to: Header Image link to homepage #11724
    JestersTear
    Participant

    I feel like I might have tried to start with the ending, rather than the beginning. Let me try this anew:

    - If your header is an image that you can upload via Appearance > Header, then it should already automatically link to your homepage without you needing to do anything; if it isn't doing that, I have no idea what's causing it.

    - If, on the other hand, your header is an image you're using via the background: url(imageurlhere); css property, then what I said in my first post is the answer, and there's a screenshot here to better illustrate it. Please let me know if this helps.

     

     


    Monica | jesterstear on twitter | monicaguerraleiria.com

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

CTA

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

Create a site with WP EngineShop for Themes

Footer

StudioPress

© 2023 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