Hi on mobile / responsive theme I need to make the social icons center in header. It is slightly to the right.
I also would like to make the phone number larger to read and also center aligned just right underneath the social icons.
I’ve tried
@media only screen and (min-width: 767px) { .social_header .phone-info span { font-size: 16px; } }
@media only screen and (max-width: 767px) {
#top .social_bookmarks {
margin: 0 0 0 0px;
}}
I have tried other values for _px
but nothing seem to work for me.
this is for the mobile /responsive only.
thank you.
will include my website link below in private content
Hi can anyone help with this?
Hey!
Try adding this code to General Styling > Quick CSS:
@media only screen and (max-width: 767px) {
.av_icon_active_right .social_bookmarks {
padding: 0;
}
}
Cheers!
Josue
Worked great in center align the social icons.
But how do I make the phone number /text bigger in the header for mobile only? Thanks
Hey!
Please add following code to Quick CSS as well
@media only screen and (max-width: 767px) {
#header_meta * {
font-size: 20px;
}}
Best regards,
Yigit
You guys are AWESOME. THANKS!!!!!!!