• 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

jlo2013

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 22 total)
1 2 →
  • Author
    Posts
  • March 10, 2015 at 5:29 am in reply to: Is the Associate Child theme mobile responsive? #143897
    jlo2013
    Member

    I made it responsive!
    Add this to the CSS file + logos in different dimentions:

    /* Mobile Responsive Design
    ------------------------------------------------------------ */
    body {

    overflow-x: hidden;

    }


    @media
    only screen and (max-width: 768px) {

    .five-sixths,
    .four-sixths,
    .one-fourth,
    .one-half,
    .one-sixth,
    .one-third,
    .three-fourths,
    .three-sixths,
    .two-fourths,
    .two-sixths,
    .two-thirds {
    margin: 0;
    width: 100%;
    }

    .genesis-grid-even,
    .genesis-grid-odd {
    width: 100%;
    }

    #header {
    margin: 0 auto;
    min-height: 96px;
    width: 100%;
    }

    .header-full-width #title-area,
    .header-full-width #title,
    .header-full-width #title a {
    background: url(http://www.yoursite/files/2015/03/logo_768.png) no-repeat !important;
    background-size: contain;
    width: 760px;
    height: 96px;
    }

    #nav {
    width: 100% !important;
    }

    #inner .wrap {
    width: 100% !important;
    padding: 5% !important;
    }

    #content-sidebar-wrap {
    float: none;
    width: 100% !important;
    }

    #content {
    float: left;
    padding: 0 5px;
    width: 90% !important;
    overflow: hidden;
    }

    .featured {
    margin: 0 auto;
    height: auto;
    width: 100% !important;
    }

    .home-middle,
    .home-middle-1,
    .home-middle-2,
    .home-middle-3,
    .sidebar {
    width: 100%;
    }

    .home-bottom h4, .home-middle h4 {
    text-align: center;
    }

    .home-middle .featuredpage img, .home-middle .featuredpost img {
    margin: 5px;
    display: inline;
    width: 45%;
    }

    .home-middle p {
    text-align: justify;
    display: inline;
    float: right;
    width: 50%;
    }

    .home-bottom {
    width: 100%;
    }

    .home-bottom-1,
    .home-bottom-2 {
    float: none;
    width: 100%;
    }

    #footer .wrap {
    width: 100%
    }

    #footer .creds p {
    float: none;
    text-align: center;
    width: 100%;
    }

    #footer .gototop {
    display: none;
    }
    }


    @media
    only screen and (max-width: 600px) {

    .header-full-width #title-area,
    .header-full-width #title,
    .header-full-width #title a {
    background: url(http://www.yoursite.se/files/2015/03/logo_600.png) #ffffff no-repeat !important;
    background-size: contain;
    width: 100%;
    height: 60px;
    }

    #header {
    margin: 0 auto;
    min-height: 60px;
    width: 100%;
    background-color: #fff;

    }

    }


    @media
    only screen and (max-width: 400px) {

    .header-full-width #title-area,
    .header-full-width #title,
    .header-full-width #title a {
    background: url(http://www.yoursite.se/files/2015/03/logo_400.png) #ffffff no-repeat !important;
    background-size: contain;
    width: 320px;
    height: 120px;
    margin 0 auto;
    }

    #header {
    margin: 0 auto;
    min-height: 120px;
    width: 100%;
    background-color: #fff;

    }

    .home-middle .featuredpage img, .home-middle .featuredpost img {
    margin: 5px;
    display: block;
    width: 287px !important;
    }

    .home-middle p {
    text-align: justify;
    display: block;
    float: none;
    width: 100% !important;
    }

    }


    @media
    only screen and (max-width: 240px) {

    .header-full-width #title-area,
    .header-full-width #title,
    .header-full-width #title a {
    background: url(http://yoursite.se/wp-content/uploads/2015/03/header240.png) no-repeat !important;
    background-size: contain;
    width: 100%;
    height: 120px;
    }
    }

    April 13, 2014 at 1:24 pm in reply to: Display content before widget areas on a landingpage #100076
    jlo2013
    Member

    Hi Susan I resolved it in another way 🙂 Thanks for replying.

    February 13, 2014 at 8:14 am in reply to: How can I make the body background color to be a different color, not white? #90126
    jlo2013
    Member

    Hi Perry and Ramsey, I found this blog http://wpsites.net/web-design/styling-the-background-of-your-theme/,
    you can create an bg-image and solve it.
    Just ad the code in the function file:

    /** Add support for custom background */
    add_theme_support( 'custom-background' );

    This will add the background image functionality.

    Good luck,
    Johanna

    February 13, 2014 at 8:12 am in reply to: Looking for header background image on Magazine Pro theme #90125
    jlo2013
    Member

    Hi Harvey, I found this blog http://wpsites.net/web-design/styling-the-background-of-your-theme/, you can create an bg-image and solve it.
    Just ad the code in the function file:

    /** Add support for custom background */
    add_theme_support( 'custom-background' );

    This will add the background image functionality.

    Good luck,
    Johanna

    February 13, 2014 at 8:08 am in reply to: Backgrounds in body #90123
    jlo2013
    Member

    Thanks for the link to the blogs!

    February 13, 2014 at 7:23 am in reply to: How can I make the body background color to be a different color, not white? #90119
    jlo2013
    Member

    Hi Ramsey I am working on antother theme: Magazine Pro, I would also like to have a background color. I cannot find the #inner in the CSS. My URL: http://wp.byggteknikforlaget.se/

    Do you know how to solve? Thanks.
    // Johanna

    February 12, 2014 at 6:46 am in reply to: modify logo size in Magazine pro #89948
    jlo2013
    Member

    I have solved thru looking in the forum, the answer is here: http://travlanders.com/wordpress/2013/11/changing-the-logo-in-the-header-of-the-agency-pro-theme/

    You change the logosize in the functions file as well. No need to edit "cropped-logo-final.png" in this theme.
    // Johanna

    February 3, 2014 at 3:49 am in reply to: sticky post #88303
    jlo2013
    Member

    Hi I have the same problem, my theme: Magazine pro.
    It doesn´t seem to work the normal way, now I am trying out plugins..

    September 3, 2013 at 2:22 pm in reply to: Chrystal theme- something wrong: Too few arguments in.. #60489
    jlo2013
    Member

    Thanks it worked 🙂 Cheers

    March 26, 2013 at 2:17 pm in reply to: How do I place a small logo in Agency's header? #31402
    jlo2013
    Member

    I have resolved it.

    // Jo

    February 26, 2013 at 6:25 pm in reply to: A phonenumber in the header #23019
    jlo2013
    Member

    Hey Greg, I managed it thru the functions file:

    ** Add support for custom header */
    add_theme_support( 'genesis-custom-header', array( 'width' => 960, 'height' => 115 ) );

    add_action( 'genesis_header', 'custom_header' );
    function custom_header() {
    ?>

    <table border="0" width="600">
    <tr>
    <td width="500">&nbsp;</td><td width="150" align="right" valign="top"><font color="#999999">PHONE: 08 - 123 456</font></td></tr></table>
    <?php
    }

     

    February 26, 2013 at 5:04 pm in reply to: A phonenumber in the header #22998
    jlo2013
    Member
    This reply has been marked as private.
    February 26, 2013 at 4:38 pm in reply to: A phonenumber in the header #22994
    jlo2013
    Member
    This reply has been marked as private.
    February 26, 2013 at 4:30 pm in reply to: A phonenumber in the header #22987
    jlo2013
    Member
    This reply has been marked as private.
    February 26, 2013 at 4:11 pm in reply to: A phonenumber in the header #22980
    jlo2013
    Member

    Hi Greg,

    Now I have added the phonenumber (i made a frame aroud it to test..)

    // Johanna

    February 26, 2013 at 3:57 pm in reply to: A phonenumber in the header #22978
    jlo2013
    Member
    This reply has been marked as private.
    January 30, 2013 at 2:41 am in reply to: How do I place a small logo in Agency's header? #16345
    jlo2013
    Member

    If I use the titel instead of a logo it works, however I want to use the logo.

    January 30, 2013 at 2:29 am in reply to: How do I place a small logo in Agency's header? #16344
    jlo2013
    Member

    Yes, but it seems they are in different divs or wraps.. here is my link: http://bbstockholmfamily.se/test/

    // Johanna

     

    January 29, 2013 at 10:18 am in reply to: How do I place a small logo in Agency's header? #15981
    jlo2013
    Member

    Hi I ave the theme “Agency” . I have made some changes in the CSS the logo area is not as wide as before however the menu is still under the logo.. when I look at:

    http://demo.studiopress.com/agency/

    the menu is next to the logo.=As I want it

    On my site I can see: div wrap 960 x 31 whish is the height of the menulinks

    On the demo site I see: div wrap 960 x 0 so, the menu is not placed in that div tag. How do I change that?

    Thanks!

     

    // Johanna

    January 28, 2013 at 4:09 pm in reply to: Minimum theme – how to have the logo on the left and the navigation on the right #15736
    jlo2013
    Member

    Hi I have the theme "Agency" and I followed "And or" recipe above. The logo area is not as wide as before however the menu is still under the logo.. when I look at:

    Agency

    the menu is next to the logo.

    On my site I can see: div wrap 960 x 31 whish is the height of the menulinks

    On the demo site I see: div wrap 960 x 0 so, the menu is not placed in that div tag. How do I change that?

    Thanks!

    Johanna

  • Author
    Posts
Viewing 20 posts - 1 through 20 (of 22 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

© 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