Nilo Chacon
asked 10 years ago

Hello,
I would like to increase the size of the logo. How to do this?
Thank you.

1 Answers
DominicStaff
answered 10 years ago

To increase the size of the logo in DW Argo, below is our instruction:
Firstly, follow the jetpack’s guideline in the Blog article on how to use Edit CSS here. http://cmspioneer.com/designwall/blog/using-jetpack-custom-css-for-your-wordpress-site/
Then add the code to the Edit Css.
E.g: I have used image size 230x90px.

/* Desktops and laptops ----------- */ 
@media only screen and (min-width : 1224px) {
#main {padding: 120px 0 40px;}
.navbar .brand { height: 90px; width: 230px; }
.navbar .brand img { max-height: 90px; width: 230px; }
.navbar .nav > li > a { line-height: 90px; }
.navbar .nav > [class*="icon-"]:before { line-height: 90px; }
.navbar .navbar-search [class*="icon-"] { line-height: 90px; }
.navbar #searchform input[type="text"] { height: 90px; }
}
@media(max-width:1200px) {
.navbar .nav > [class*="icon-"] > a {padding-right: 36px; }
}

If you still face there issue, you can send me your site for further checking.
Hope this helps !
 

Nilo Chacon
replied 10 years ago

Thank you.
It would be nice to create ways to customize the header.
I would like to make fixed header at the top. Is it possible?

Dominic Staff
replied 10 years ago

You can add the following code to the style.css file:
.navbar-fixed-top, .navbar-fixed-bottom { position:relative; }

Powered by DW Question & Answer Pro