Hi there,
I was wondering if you could help me with a little glitch in the matrix.
I have tried a few different solutions from forum posts and am having trouble adding a dotted overlay in Cornerstone, to parallax contend bands.
I am trying to have the following elements in this order:
1.) Text on top
2.) Dotted overlay under text
3.) Background at the back
The overlay works (kind of) when I add the class ‘dot-pattern’ to the class of the section I’d like it to function on, when the code below is popped into customiser. However, the overlay appears on top of the white text, which means the order is incorrect. The dotted overlay needs to be under the text, so the text is easy to read.
If you can help me achieve the above order at all, I would be most grateful.
The code I am using in customiser is:
.dot-pattern:before {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background: url("http://demo.rocknrolladesigns.com/wordpress/jarvis/text-slider/wp-content/themes/jarvis_wp/images/pattern.png");
content: '';
display: block;
z-index: 16000;
}
.dot-pattern {
position: relative;
}
URL is http://www.simplysignspreview.com/aaronstoneltd
(bottom image has the dotted overlay, as well as middle, both with parallax)
I am sure I am missing something small here, but all help is much appreciated!