Hi
Icon circles element:
1/ I want to enlarge the circle and the icon within the circle
2/ I want to enlarge the line spacing for the description text that displays within the element
Is there any css that can be added for this?
See link in private
Thanks
Marcus
try to play a little and start with: height and font-size
#top .av-icon-circles-container .avia-icon-circles-icon {
text-align: center;
font-size: 50px;
line-height: 0 !important;
height: 80px;
width: 80px;
margin: -33px;
}
#top .avia-icon-circles-icon::before {
position: relative;
top: 49%;
}
.main_color #top .av-icon-circles-container .avia-icon-circles-icon.active {
border: 3px solid #608a12;
transform-origin: center center;
}
it might be necessary to move the icon inside the circle ( via pseudo-container : before ) . Since I can’t see your private message, I can’t give you any better advice.
Hi,
Thank you for the inquiry.
Please use the css code that @Guenni007 provided above. The css rules should adjust the size of the circles and the icons within them. To adjust the line spacing of the description, please include this code.
.avia-icon-circles-icon-text .icon-description {
line-height: 2em;
}
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings in order to ensure that the changes take effect.
@Guenni007: Thanks!
Best regards,
Ismael
Thanks both,
This has been really helpful.