• Hello,

    While using the Twenty Fourteen theme (I’ve already created a child theme), I’m trying to move the whole left sidebar to the right and put the site content to the left.

    Basically, I’m just trying to switch both areas positions (and remove the “site-description” which won’t be needed since it won’t be positioned under the “site-title” anymore).

    If somebody can help me achieve that, I’ll really appreciate it.

    Here is the website concerned : https://www.digitalcine.fr/

    Thanks a lot.
    Merry Christmas ??

    Best regards,
    Stephane.

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

Viewing 1 replies (of 1 total)
  • Thread Starter stfa76

    (@stfa76)

    Hello everyone,

    Using some answers I found here and there, I was able to modify the following lines inside the style.css file of my Twenty Fourteen theme:

    Inside the @media screen and (min-width: 1008px) { block :
    Line 3827:

    	.site:before {
    		left: 0;
    	}

    Replaced by:

    	.site:before {
                    right: 0;
    	}

    Line 3836:

    	#secondary {
    		float: left;
    	}

    Replaced by:

    	#secondary {
                    float: right;
    	}

    Inside the @media screen and (min-width: 1080px) { block :
    Line 4155:

    	.site-content,
    	.site-main .widecolumn {
    		margin-left: 222px;
    	}

    Replaced by:

    	.site-content,
    	.site-main .widecolumn {
                    margin-left: -222px;
    	}

    But now, I’m still seeing this weird “striped area” on the left of the article main image : https://screenshots.firefox.com/RGY8PKdtG6Z1FePZ/localhost

    Can someone tell me how to rectify this please?
    Thanks a lot.

    Best regards,
    Stephane.

    • This reply was modified 7 years, 2 months ago by stfa76.
Viewing 1 replies (of 1 total)
  • The topic ‘Moving left sidebar to the right’ is closed to new replies.