As I want to show a logo and the site title and tagline in the header, I used the quick css code below. Everything looks fine now, but not in responsive mode on a small screen. Can you help mee with the proper code so the content keeps centered, the margins stay and the image doesn’t shrink too much?
strong.logo {
padding-top: 30px;
font-size: 36px !important;
text-align: center;
display: block;
width: auto;
}
strong.tagline {
padding-top: 70px;
font-size: 24px !important;
text-align: center;
display: block;
width: auto;
}
.logo img {
height: 375px;
width: 630px;
}
Hey sberendss!
Please add following code to Quick CSS
@media only screen and (max-width: 767px) {
strong.tagline {
padding-top: 0;
}
.responsive #top .logo {
line-height: 50px;
width: 100% !important;
}}
Best regards,
Yigit
Fixed. Thanks Yigit!