Increasing column width using CSS

  • Unknown's avatar

    I’ve searched for an answer to this but haven’t been very successful at applying the advice from some of the responses. I’m currently using the Duotone theme and thinking of purchasing the upgrade, so for now just experimenting. Some of my blog entries have multiple pictures (see null as an example). How can I increase the column width of the post so that the additional images appear larger? Thanks!

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

  • Unknown's avatar

    You could try something like this:

    .single .navigation { display: none; }
    .single .post { width: 600px; }

    That essentially hides the “navigation” links in the right hand column, and makes the content column span the remaining width.

  • Unknown's avatar

    Thanks Andrew. The code was not 100% right but it put me on the right track. The following code worked for me:

    .single .navigation { display: none; }
    .post .sleeve { width: 600px; }

  • The topic ‘Increasing column width using CSS’ is closed to new replies.