Hi, how can I make the icons smaller only on mobile?
Thanks.
Seems like they are also very big on desktop now so I want to make them smaller across the board.
Hi,
It looks like in your custom css or General Styling > Quick CSS field you have this code:
#top .iconbox_icon, #top .iconbox_icon {
font-size: 100px !important; /* Icon size */
width: 74px !important; /* Container size */
height: 74px !important; /* Must be the exact same value as the width */
}
please adjust “font-size: 100px !important;” to a smaller number.
Best regards,
Mike
How can I make this relevant only for that specific iconlist only on that page? I gave the color section it’s in a CSS custom name of – studioicons
Thanks.
Hi,
Please add .studioicons to the code like this:
#top .studioicons .iconbox_icon {
font-size: 100px !important; /* Icon size */
width: 74px !important; /* Container size */
height: 74px !important; /* Must be the exact same value as the width */
}
Best regards,
Mike
Thanks Mike, that worked. How can I also align them as you can see in the screenshot?
Hi,
Can you try adding this css code in Quick CSS (located in Enfold > General Styling):
#top .studioicons .iconbox_icon {
margin-top: 30px !important;
}
Hope it helps :)
Best regards,
Nikko