Notice: This thread is over two years old; the information may be outdated. Please consider creating a new thread if you require free support. If you have an active SiteOrigin Premium license, you can email our premium support desk at [email protected].
Is there a way to make the Circle icons on the homepage smaller in mobile?
Hi there,
First of all I apologize for the delayed response.
You can fix/change this with some custom CSS. If you navigate to Appearance > Custom CSS, you’ll get our custom CSS editor. Just add the following code.
@media (max-width:480px){ .circle-icon { width:40px!important; height:40px!important; } }You can change the size in pixels (40px) to desired figure
Try that out and let me know the outcome.
will this make them small only on mobile? I don’t really want to change how it looks on the computer just on mobile devices
Hi Zeroelement
The @media (max-width:480px) defines which screen sizes will be affected :-)
Kindly, let me know if you encounter any difficulties while implementing this.