Okay
  Public Ticket #356161
content container width
Closed

Comments

  • Frode started the conversation

    Hi again!
    I have adjusted the content container width to 650px by this snippet:

    #content-container {
    color: #fff;
    height: 100%;
    padding: 75px 20px 75px 50px;
    position: absolute;
    right: 0;
    top: 0;
    width: 650px;
    }

    But I see that I need 800 px on the blogpage and blog posts. I tried with;

    #content-container id-118 {...

    but that did not do it. Any tip on how to achieve this?

  •  291
    Paul replied

    Hi,

    You can try adding some specific class in front of the above CSS like:

    .blog #content-container {
        width: 800px;
    }

    You can find that specific class by inspecting the "body" tag of the page using Developer Tools on Chrome. Screenshot: http://cl.ly/image/0Z2G3A182J0X

    Regards,
    Paul

  • Frode replied

    Ok, that worked fine, thanks Paul!