Widen my content

  • Unknown's avatar

    Hi there,

    I am a complete rookie and have done most of my blogging research on line. I think I’ve figured out how to widen my content and images/videos in CSS but have no idea how to access my CSS information. I also want to change all of my text from grey to black. Please help.

    http://www.gettheskinntfat.com

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

  • Unknown's avatar

    Hi, on the Profile theme, all you need to do is to change the maximum width in the following:

    .row {
        margin: 0 auto;
        max-width: 980px;
        min-width: 727px;
        width: 100%;
    }

    Here are the two rules that set the content (top rule) and sidebar (bottom). You can adjust the widths as you desire.

    .row .eight {
        width: 65.2%;
    }
    
    .row .four {
        width: 30.37%;
    }

    Images in your site should automatically insert at either the width of the image (if the width is at or less than the width of the content area) or at the maximum width for the content area if the image is wider than the content area.

  • Unknown's avatar

    For the last paragraph, I should add, images inserted into post or pages at full-size.

  • The topic ‘Widen my content’ is closed to new replies.