• Resolved StSeanoftheKnife

    (@stseanoftheknife)


    Hi! I’m trying to increase the width of the blogging space on my website (www.orthocomics.com). I have the header, left column and main column sizes to where I want them to be but cannot for the life of me find where the blog space width is in the php files. I’m sure I’m being completely dense about this, and I apologize. Any help is greatly appreciated.

    Thanks!

    Sean

    http://wordpress.org/extend/plugins/comic-easel/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Frumph

    (@frumph)

    You probably just need this CSS

    .entry img { max-width: 100%; }

    so that the images appear correctly inside the post

    you can add that css by going to appearance -> editor then selecting the style-default.css file (right column all the way down) and just adding that line to the bottom of the file

    or if you use the jetpack plugin, enable the css editor then go to appearance -> edit CSS and just paste it in there (recommended)

    bonus points for having a child theme

    Plugin Author Frumph

    (@frumph)

    HOWEVER
    I see what you did there 😉

    here’s the CSS

    body.layout-2cl .narrowcolumn, body.layout-2cr .narrowcolumn {
         width: 590px;
    }

    That will set the width of your narrowcolumn for your layout to be 590px; wide to fill in the space

    Thread Starter StSeanoftheKnife

    (@stseanoftheknife)

    YES! that was it! thanks!

    sean

    Thread Starter StSeanoftheKnife

    (@stseanoftheknife)

    Oops. Resolved!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘blog width’ is closed to new replies.