I want the text widget visible in the header, and positioned to the right of the logo on mobile. Is that possible?
As of now the content shrinks and overlays the logo when mobile.
Hey jr3creative!
if you really want it, you would need to use this code in Quick CSS:
@media only screen and (max-width: 1024px) {
#header .widget {
display: block !important;
right: -52px !important;
}}
Adjust as needed.
Cheers!
Andy
Beautiful
Thanks Andy