Lodestar front page panels content size adjustment

  • Unknown's avatar

    Hi,

    I am using Lodestar and I want to increase the size of the content in the front page panels. It appears that the content is being shrinked.

    Best,
    Laura

    The blog I need help with is: (visible only to logged in users)

  • Hi Laura,

    Could you provide a few more details on what you’re wanting to change?

    For instance, are you wanting the images in the gallery within your to appear larger?
    Are you wanting the fonts larger, or possibly the images below your large main image?

  • Unknown's avatar

    I want both the font above the gallery and images in the gallery to be bigger.

  • Sure thing. Here’s some code to help with those changes:

    /*Home H2 Font Size*/
    
    .home .entry-header h2 {
        font-size: 30px;
    }
    /*Home H5 Font Size*/
    
    .home .entry-content h5 {
        font-size: 14px;
    }
    /*Remove Padding From One Column Panels*/
    
    .one-column .panel-content .entry-content {
        padding-left: 0;
        padding-right: 0;
    }

    The last bit which removes the padding allows there to be more horizontal space for your content. So the gallery will expand to fill that space since the padding is being removed.

    Feel free to adjust the font sizes to your liking.

  • Unknown's avatar

    Thanks, that worked great.

  • Unknown's avatar

    Actually, could you help me with one more thing? I would like to center the Contact and Social Icons in the footer in line with the pink logo.

  • Sure, if you won’t need to display footer widgets side by side, you can use this to make all of your widget areas span the width of the site:

    /*Set footer widgets width*/
    
    @media screen and (min-width: 60em) {
        .site-footer .widget-column {
            margin-right: 0;
            width: 100%;
        }
    }

    This will stack them on top of each other, and they’ll be centered in the middle of the footer, with footer 1 at the top.

  • Unknown's avatar

    Sorry, I wasn’t clear. I want to display the footer widgets side by side but I want them to be in line to the center of the pink logo image in the horizontal direction.

    Thanks.

  • Ok, this adds margin to the top of the first and last footer widget areas to push them down a little and make things line up horizontally:

    /*Add Top Margin To First and Third Widget Areas*/
    
    @media screen and (min-width: 60em) {
        .site-footer .widget-column:first-of-type, .site-footer .widget-column:nth-of-type(3) {
            margin-top: 70px;
        }
    }

    Feel free to change the 70px up or down to your liking.

  • Unknown's avatar

    Thanks that worked great. Also one final thing, I want to remove all the page headers (about, details, etc) that automatically appear on each page, if you are able to help me out with that.

  • Sure thing. Here’s some CSS to remove those page titles:

    /*Hide Titles on Pages*/
    
    .page .entry-header {
        display: none;
    }

    Let me know if that’s not what you were after.

  • Unknown's avatar

    That worked great. Thanks for all your help I really appreciate it.

  • You bet. If you need anything later, feel free to open a new thread.

  • The topic ‘Lodestar front page panels content size adjustment’ is closed to new replies.