No brother generally . can this make with CSS? possibleJust overly button and text? Elementor can do this easy. Just play abit with css and done if needed.
No brother generally . can this make with CSS? possible
diagonal lines . (grid)Well surely this can be done easily if using elementor. Are u using it? And are u referring to the button styles or just the diagonal background line?
Okay, the black grid overlay.frontendmasters.com
Okay, the black grid overlay.
I think it can be done if you can find the grid transparent PNG image.
Then you set it as the section background image then apply the black colour to it as an overlay.
Okay, the black grid overlay.
I think it can be done if you can find the grid transparent PNG image.
Then you set it as the section background image then apply the black colour to it.
.LearnAbout .grid {
z-index: 2;
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAQAAAAD+Fb1AAAAEklEQVR42mNg+M8AAhASDUClAEXeA/1LlYqzAAAAAElFTkSuQmCC);
opacity: .75;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
filter: alpha(opacity=75);
}
diagonal lines . (grid)
/* you can adjust thin-dotted or bold-dotted in var() */
.background {
--thin-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQYV2NkQAOMUH4DAwMDCDPABODqMAQAKe4BBZTlhh0AAAAASUVORK5CYII=");
--bold-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAQAAAAD+Fb1AAAAEklEQVR42mNg+M8AAhASDUClAEXeA/1LlYqzAAAAAElFTkSuQmCC");
position: absolute;
top: 0;
left: 0;
justify-content: center;
background: var(--bold-dotted), url(https://i0.wp.com/keralaspeechfoundation.com/wp-content/uploads/2019/09/file-20181001-19012-1222oat-1.jpg) 50% no-repeat;
background-size: auto, cover;
display: flex;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
flex-direction: column;
height: 100vh;
width: 100vw;
z-index: 2;
}
/* html structure
<section class="container">
<div class="background"></div>
</section>
*/
Yeap . exactly . thanks buddy . you save my daylike this ??
![]()
if like the picture above,
see code below
CSS:/* you can adjust thin-dotted or bold-dotted in var() */ .background { --thin-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQYV2NkQAOMUH4DAwMDCDPABODqMAQAKe4BBZTlhh0AAAAASUVORK5CYII="); --bold-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAQAAAAD+Fb1AAAAEklEQVR42mNg+M8AAhASDUClAEXeA/1LlYqzAAAAAElFTkSuQmCC"); position: absolute; top: 0; left: 0; justify-content: center; background: var(--bold-dotted), url(https://i0.wp.com/keralaspeechfoundation.com/wp-content/uploads/2019/09/file-20181001-19012-1222oat-1.jpg) 50% no-repeat; background-size: auto, cover; display: flex; -webkit-box-orient: vertical; -moz-box-orient: vertical; flex-direction: column; height: 100vh; width: 100vw; z-index: 2; } /* html structure <section class="container"> <div class="background"></div> </section> */
Thank you brother that's an easy solutionAnd to get the exact background pattern you want in a Base64 code, use Patternify.
This seems to be the relevant code...
CSS:.LearnAbout .grid { z-index: 2; background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAQAAAAD+Fb1AAAAEklEQVR42mNg+M8AAhASDUClAEXeA/1LlYqzAAAAAElFTkSuQmCC); opacity: .75; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)"; filter: alpha(opacity=75); }
like this ??
![]()
if like the picture above,
see code below
CSS:/* you can adjust thin-dotted or bold-dotted in var() */ .background { --thin-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQYV2NkQAOMUH4DAwMDCDPABODqMAQAKe4BBZTlhh0AAAAASUVORK5CYII="); --bold-dotted: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAQAAAAD+Fb1AAAAEklEQVR42mNg+M8AAhASDUClAEXeA/1LlYqzAAAAAElFTkSuQmCC"); position: absolute; top: 0; left: 0; justify-content: center; background: var(--bold-dotted), url(https://i0.wp.com/keralaspeechfoundation.com/wp-content/uploads/2019/09/file-20181001-19012-1222oat-1.jpg) 50% no-repeat; background-size: auto, cover; display: flex; -webkit-box-orient: vertical; -moz-box-orient: vertical; flex-direction: column; height: 100vh; width: 100vw; z-index: 2; } /* html structure <section class="container"> <div class="background"></div> </section> */
Nice work guys.And to get the exact background pattern you want in a Base64 code, use Patternify.