Does anyone know how I can change my “Contact Details” widget to make it centered when seen on mobile devices? I already have a responsive theme but there is no option to change this. I have a plugin installed which allows me to add CSS Classes to widgets but I don’t know what coding to add?
Example screen shot: https://www.lizzardz.co.uk/mobile.jpg
Website: https://www.tgfsecurity.co.uk
Thanks in advance ??
]]>.footer #text-2 { text-align: center; }
]]>
@media screen and (max-width: 768px) {
.footer #text-2 { text-align: center; }
}
]]>
In WP admin > Appearance > Customize > Additional CSS.
]]>