Cameron West
asked 9 years ago

Hello, first off I really want to say that I LOVE the theme that you guys have created. It is very easy to use an understand, with that being said however, I have run into a bit of customization snag. Regarding the logo in the header what are the recommended dimensions? I couldn’t find that information anywhere. Is it possible to change the alignment of the menu buttons in the header? Like say, if I wanted them to be aligned to the right or center instead of the left side, is that possible? Is it possible to change the color of the header, grid sections and/or background? And lastly is it possible that I could put the main sidebar into a box or give it a border?

1 Answers
DominicStaff
answered 9 years ago

Hi,

  • At the moment, we have used the logo size is 101x26px. However, you can use the logo image site is 230×90. Please let me know, if you want to make the image size 230x90px.
  • If you want to make the menu to be aligned to the right or center instead of the left side, you can add the following code to the style.css file:
    /**Center**/
    @media only screen and (min-width : 1224px) {
    #header #navigation {
    float: none;
    margin-left: auto;
    margin-right: auto;
    width: 55%;
    }
    }
    @media (min-width: 1079px) and (max-width: 1224px) {
    #header #navigation {
        width: 64%;
    }   
    }
    @media (min-width: 980px) and (max-width: 1079px) {
    #header #navigation {
    width: 72%;
    }
    }
    /**Right**/
    @media only screen and (min-width : 1224px) {
    #header #navigation {
    float: right;
    width: 58%;
    }
    }
    @media (min-width: 1079px) and (max-width: 1224px) {
    #header #navigation {
        float: right;
        width: 65%;
    }   
    }
    @media (min-width: 980px) and (max-width: 1079px) {
    #header #navigation {
    float: right;
    width: 72%;
    }
    }

    Change color:

  • To change the color of the header, you can open the template.css file in the folder path"wp-contentthemesdw-wallassetscss". Find the line 2701 to line 2871 then change the color that you want to display

Sidebar issue:

  • At the moment, our theme does not support this issue.
    Hope this helps !
Powered by DW Question & Answer Pro