Customizing Blix Width

  • Unknown's avatar

    Hi, new to CSS and I’ve purchased the upgrade. I’m looking to widen the columns, mostly the left column where I post the majority of my work. I mostly post photos, and my clients would like to see larger images. BUT, I don’t know where to begin. I love blix’s color choices and pretty much everything else, so I’m looking to keep it very close to what it is. My blog is at http://myphotography.wordpress.com .

    Any help or direction is appreciated. Thanks!

  • Unknown's avatar

    Well.
    If you want to understand CSS fairly well, here is a simple advice:
    I set a diffrent coloured border in (around) every container I can find. That will show you what is called what. Into the {} of anything that is called something like header, column, page, footer etc., you just add “border: 1px solid green” (and change colours for each.)
    This makes it a good deal easier to see the structure of your blog, and makes it very easy to make any changes.

    If you’d rather make a guess and try, find the selector called “content” and try to alter the size. There might be a sideeffect to changing that, but try it and see what happens. I cannot access your css for some reason, so give it a go and see what happens.

  • Unknown's avatar
    #container {
      width:690px;
      margin:0 auto;
      padding:30px 30px 0 30px;
      text-align:left;
    }

    I think this is the width of the blog itself

    #content {
      float:left;
      width:455px;
      padding-top:32px;
      overflow: hidden;
    }

    And I think this is the width of the left column.

    Try changing those.

  • Unknown's avatar

    Wow, thanks for the starter tips. I’ll be playing around with this for a while. Much appreciated!

  • Unknown's avatar

    Happy to help. Seems you got it working.

  • Unknown's avatar

    One thing I’d recommend: reduce the number of posts on the front page – or at least the number of photos. I’m on a fast connection but the page loads VERY slowly.

  • Unknown's avatar

    Oh – and you may want to redo your header. It is not as wide as what the rest of the site is now that you’ve changed the width.

  • Unknown's avatar

    yep to the header comment. I’m attempting to fix that now. Thanks again! Constructive input is great.

  • The topic ‘Customizing Blix Width’ is closed to new replies.