Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #32182
    probogus
    Member

    This is a great theme still trying to make it a bit more personal.
    Am quite new at this 🙂 Just have two questions.
    1. Is it possible to adjust the length of the menubar to 1200 instead of 1600.
    2 And to do this also for the footer. Or change the color outline
    So it would be a more compact site.

    My website is http://www.socrates-coaching.com

    Thanks for your help

    #32428
    Sakin
    Keymaster

    @probogus:
    1. OH you are changing from Full Width to 1200px center fit. You can add the following css in “Appearance => Theme Options => Custom CSS” box and it will adjust it.

    .site { display: block; margin: 0 auto; width: 1200px; }
    @media screen and (max-width: 1224px) {
    .site { width: 1024px;}
    }
    @media screen and (max-width: 1060px) {	
    .site { width: 900px;}	
    }
    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation : landscape) {
    .site { width: 1024px;}	
    }
    @media screen and (max-width: 960px) {	
    .site { width: 700px;}	
    }
    @media screen and (max-width: 767px) {
    .site { width: 380px;}	
    }
    @media only screen 
    and (min-width: 480px) 
    and (max-width: 767px) {
    .site { width: 440px;}	
    }
    @media screen and (max-width: 479px) {
    .site { width: 300px;}	
    }
    @media screen and (max-width: 320px) {
    .site { width: 100%;}	
    }

    2. You can change the color code as per you need in the following css where I have change to white color code and add it in “Appearance => Theme Options => Custom CSS” box.
    #site-generator { background-color: #fff; }

    #32945
    probogus
    Member

    Thanks Sakin, It worked perfectly great theme and great support.
    Very much appreciated.

    Walter

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Menubar and footer width adjustment’ is closed to new replies.