Hi, as you can see here – http://screencast.com/t/dnJ4lsE2ss – the counter isn’t responsive. How can I fix that? Also, the grey background at the bottom of the page, how can I remove that from all the pages of the site? not sure why it is there.
Hi DROR!
Please find following code in your custom CSS
.av-countdown-time {
font-size: 80px !important;
font-weight: bold !important;
color: #00a59d !important;
}
and change it to following one
.av-countdown-time {
font-weight: bold !important;
color: #00a59d !important;
}
and then find following one
.av-countdown-time {
font-size: 40px !important;
}
and change it to
@media only screen and (min-width: 1200px) {
.av-countdown-time {
font-size: 80px !important;
}}
Cheers!
Yigit
Great, thanks. What about the grey background at the bottom below the timer? How do I get rid of that?
Hi!
You can add more content to your page to avoid it or set your color section to display at least at 50% of the screen size
Best regards,
Yigit
OK, thanks.