Hey guys,
Two things!
01. I have a text box that I want to move further away from the logo and hamburger. I believe I had CSS to do this but it seems to not work anymore, after I placed the text box inside a color section. Can you help with this?
02. The logo on my mobile homepage is huge. Is there CSS to shrinking this?
website: http://www.ccyran.com
password in private content
Thanks!
Chris
Hey ccyran,
For #1 do you want to keep the large space below the text?
Best regards,
Jordan Shannon
Hey Jordan,
Yes!
Hi,
Add the following to quick css
@media only screen and (max-width: 767px){</span>
.post-entry.post-entry-type-page.post-entry-2890{
margin-top:50px!important;
}
}
@media only screen and (max-width: 767px){</span>
.responsive .logo img {
max-height: 40px;
}
}
You can adjust the max height to adjust logo size as the width is set to auto.
Best regards,
Jordan Shannon
Hey Jordan,
I added both in and didn’t see any changes. :/
Hi,
Sorry it was a formatting error. Try the update below.
@media only screen and (max-width: 767px){
.post-entry.post-entry-type-page.post-entry-2890{
margin-top:50px!important;
}
}
@media only screen and (max-width: 767px){
.responsive .logo img {
max-height: 40px;
}
}
Best regards,
Jordan Shannon
This worked!
Thank you!
Hi,
Awesome! If you need additional help, please don’t hesitate to contact us here in the forums.
Best regards,
Jordan Shannon