I have three boxes on my home page of which contain star icons, I have set them to be a specific size and colour however, they keep reverting back to a smaller size and theme colour rather than what I have specified. Clearing the cache does not seem to help as they still revert back.
Hey crg1,
what color did you want? I see blue – red – blue, with yellow stars. Please see Private Content area.
Best regards,
Mike
Yes that is how it should appear however, almost each time I make changes to the page and save then browse to see the changes the stars appear to revert back to the theme colour and smaller size. Even when I clear the cache or when working on a different computer.
Hi,
I went into the icon element and saved and found the start changed to small & faded, until I refreshed.
This is the fade-in animation effect, so I disabled it with the code below in your quick css. Review now, it should stay large & yellow :)
.avia_transform .av_font_icon, .avia_transform .avia_start_delayed_animation.av_font_icon {
opacity: 1 !important;
-moz-transform: scale(1 !important);
-webkit-transform: scale(1) !important;
-ms-transform: scale(1) !important;
transform: scale(1) !important;
-webkit-animation: none;
-moz-animation: none;
-msanimation: none;
animation: none;
}
Best regards,
Mike
Fabulous, many thanks for your help.