- This topic has 2 replies, 2 voices, and was last updated 6 years, 11 months ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Footer Widgets on Mobile Divices’ is closed to new replies.
Home › Forums › Trusted Pro › Footer Widgets on Mobile Divices
Hello,
Could you help me figure out how to get the footer widgets (footer column 1, footer column 2, footer column 3 and copyright area) to center on mobile devices please? They are all left justified right now and I want them centered on mobile devices smaller than 769px. Thanks for your help 🙂
This should center the footer content and widget titles
@media screen and (max-width: 768px){
#colophon{
text-align: center;
}
#colophon h5.widget-title:after{
left: 50%;
margin-left: -40px;
}
}
but note that content generated by third-party plugins may have it’s own CSS rules which could need overriding.
That worked. Thank you so much for all your help, it is much appreciated 🙂