• Resolved hh_hexe

    (@hh_hexe)


    Hi there,

    I am trying to change the content box width on a site built with Lodestar for hours now and all CSS codes I’ve found don’t work and the function also doesn’t exist in Appearance – Customize.

    Can anybody help?
    I would like to make the whole content box / content container wider for all pages and posts.

    Thank you so much in advance.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter hh_hexe

    (@hh_hexe)

    I was able to solve that problem myself by playing with the code in Custom CSS.

    This changes the page width to 100%:

    .page aside#secondary {
    display: none !important;
    }

    .page div#primary {
    width: 100% !important;
    max-width: 100% !important;
    }

    This changes the post page width:

    .single-post aside#secondary {
    display: none !important;
    }

    .single-post div#primary {
    width: 100% !important;
    max-width: 100% !important;
    }

    Hey there – Thanks for posting the solution.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change content area width’ is closed to new replies.