• Resolved Tioata

    (@tioata)


    Hi,

    I already tried to implement this “resolved” tread about widening the content area, but it does not work for me.

    The page content still stays the same. It does not get wider and I can not move it to the left.

    I already tried to use something like:

    @media screen and (min-width: 1180px)
    .content-wrapper {
        background: #fff;
        padding: 3em 55px 3em 55px;
        position: relative;
    }

    But no luck so far ??

    Is there anyone who could assist me? Thank you very much! Best regards!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Tioata

    (@tioata)

    And is it possible to remove the left column from the blog posts / post index page?
    I mean the column, where the post date is displayed.
    I would need the blogpage to be “full width with sidebar” as explained for the normal pages above.

    Thank you very much!

    Thread Starter Tioata

    (@tioata)

    Ok, I figured it out by myself.

    In case anyone is interested in the solution that worked for me:

    @media screen and (min-width: 1180px) {
    .content-wrapper {
    		background: #fff;
    		padding: 3em 55px 3em 55px;
    		position: relative;
    	}
    
    .content-wrapper .content-area {
    		float: left;
    		margin: 0;
    		width: 780px;
    	}
    }

    Remember – do not edit the theme itself. First create a child theme for these changes. Or install a custom CSS plugin.

    @tioata: I’m glad you were able to find a solution, and thank you so much for sharing it here. Feel free to open another thread if anything else comes up.

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