• Resolved alinssite

    (@alinssite)


    I want to move the themes sidebar with widgets to the LEFT of the page instead of the RIGHT of the page. how do i do it in the /classic/ theme, not the /default/ kubrick one.

    Any help will be greatly appreciated! Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try changing:

    #content {
    	margin: 30px 13em 0 3em;
    	padding-right: 60px;
    }
    #menu {
    	background: #fff;
    	border-left: 1px dotted #ccc;
    	border-top: 3px solid #e0e6e0;
    	padding: 20px 0 10px 30px;
    	position: absolute;
    	right: 2px;
    	top: 0;
    	width: 11em;
    }

    to

    #content {
    	margin: 30px 3em 0 13em;
    	padding-right: 60px;
    }
    #menu {
    	background: #fff;
    	border-left: 1px dotted #ccc;
    	border-top: 3px solid #e0e6e0;
    	padding: 20px 30px 10px 0;
    	position: absolute;
    	left: 2px;
    	top: 0;
    	width: 11em;
    }

    in style.css

    as far as i can see, changes are only neccessary in style.css of the classic theme:

    #content {
    	margin: 30px 3em 0 13em; /* was margin: 30px 13em 0 3em; */
    	padding-left: 40px; /*was right: 60px */
    }
    
    #header {
    	background: #90a090;
    	border-bottom: 3px double #aba;
    	border-right: 1px solid #9a9; /*was left */
    	border-left: 1px solid #565; /*was right */
    	border-top: 1px solid #9a9;
    	font: italic normal 230% 'Times New Roman', Times, serif;
    	letter-spacing: 0.2em;
    	margin: 0;
    	padding: 15px 10px 15px 6.5em; /*was 15px 10px 15px 60px; */
    }
    #menu {
    	background: #fff;
    	border-right: 1px dotted #ccc; /*was left */
    	border-top: 3px solid #e0e6e0;
    	padding: 20px 10px 10px 20px; /*was 20px 0 10px 30px; */
    	position: absolute;
    	left: 2px; /*was right: 2px; */
    	top: 0;
    	width: 11em;
    }

    this should be all, good luck ??

    Thread Starter alinssite

    (@alinssite)

    Solved!!!

    thanks you two. let this thread live on for those else who want to do this with classic theme!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Move the sidebar right to left in /classic/’ is closed to new replies.