Adds from all tabs shown during load + posible fix
I´m using Classipress 3.3
On the start page you have three tabs for the ads. (new, popular, random)
The first time you load the site or if you disable browser cache, then you can see all ads from all three tabs for a short time and that is kind of ugly.
This is because a small delay before javascript has loaded and set #block1, #block2, #block3 to
Code:
style="display:none"
or
Code:
style="display:block"
Working sollution
Add this to custom.css :
Code:
#block1, #block2, #block3 {
display:none;
}