I see a lot of solutions in the forum to increase the logo size in the forum but none seem to work for dw pages. I have searched template.css and style.css but cannot find where the logo is controlled. I am not sure yet how large I would like the logo (probably width around 300px). Any direction is appreciated!
3 Answers
You can use the following code:
.site-header .navbar-brand img {
width: 100%;
max-width: 100%;
height: 100px;
max-height: 100%;
}
If you still face their issue, please send me your site URL for further checking.
Please add the following code to the style.css file:
.navbar .site-title {
height: 120px;
}
.navbar .site-title .brand {
margin: 0;
padding: 0;
width: 300px;
}
.navbar .site-title a.brand img {
width: 250px;
}
Perfect! Worked great. Thanks!
Please login or Register to submit your answer