Currently I have put a unique color in blocks of my page, but when the page loads or I give the f5, the block will not load color at once, it is in two parts and gives an effect of slow, how I can solve this please.
http://s6.postimg.org/y5gf4pvsh/error.png
Also I have another problem with the color of the title of the blocks, but I put on white configuration, always they appear in black, which can be happening?
http://s6.postimg.org/fsftu5lbl/posonty_2016_02_25_00h41m48s_043.png
http://postimg.org/image/av2991jcd/
-
This topic was modified 10 years by
posonty.
Hello,
Unfortunately the color issue is because you have too many complex elements on your website that need to load so this is why you get the slow loading effect. Please try your block on an empty page to see how it loads the color so you will understand what I mean. The solution would be to use fewer complex elements on your homepage. As an alternative you could assign an extra class to the row in visual composer and add the background directly in style.css so it will load first.
As for the color, the title colors affect the block title itself, not the post titles inside the block: http://screencast.com/t/lXApmasL
You can only target post titles from a block with css:
.td_block_5 .entry-title a{
color:red;
}
Thank you!
Then put color does not recommend ?, if so then because they offer not understand.
I have put all blank for printing not going slow, and I will say it’s not server problem, because I have a good machine. Any CSS code that can put the background color to load whole and not in parts?
When you say that I have many complex things, I could detail some please to take this into account. Thank you
Hi,
You could try this: add a custom css class to your row in visual composer: http://screencast.com/t/e7KPj4fevgm6
Then use this code to color it’s background:
.mycustomrow{
background-color:grey!important
}
And try to add the code in the theme panel-> custom css box. Please check if it will still load with a delay. If it loads the same as before, try to add the code directly in style.css in the theme files: http://screencast.com/t/5vgfYldoLdF
Thank you!