1. After updating to Enfold 3.0 my custom text in the top bar (on the right) is positioned too far to the right (License# 943561, C-53, C-8) and gets cut off on the iPad. Can you provide me with some Quick CSS to move the text over to the left more so the end of the text lines up with the search icon? It used to be like that until I updated.
2. On the iPhone the top bar height also increased. How do I reduce the height for mobile devices?
Hey djshortkut!
Can you post the link to your website please so we can provide you accurate custom CSS code?
Regards,
Yigit
Hey!
Please add following code to Quick CSS
@media only screen and (max-width: 1140px) and (min-width: 768px) {
.my-custom-text { right: 5%; }}
@media only screen and (max-width: 767px) {
#header_meta { min-height: 40px; }}
Regards,
Yigit
Resolved, thank you!