Forums

[resolved] Move the sidebar right to left in /classic/ (4 posts)

  1. alinssite
    Member
    Posted 2 years ago #

    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!

  2. esmi
    Theme Diva & Forum Moderator
    Posted 2 years ago #

    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

  3. alchymyth
    The Sweeper
    Posted 2 years ago #

    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 ;-)

  4. alinssite
    Member
    Posted 2 years ago #

    Solved!!!

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

Topic Closed

This topic has been closed to new replies.

About this Topic