Hey, I've created a code for a transparent div that I'm using behind some text on the homepage of a website to make the text more prominent:
#transdiv {
position:absolute;
top:228px;
width:852px;
height:160px;
background-color:rgba(0,0,0,.3);
border-radius:8px;
I am implementing this code on the homepage like this:
<div id="spotlight" class="pagewidth">
<div id="find-mentor">
<div id="transdiv">
<h1><?php echo Configure::read('SearchBarHeading');?></h1>
<h2><?php echo Configure::read('SearchBarSubheading');?></h2>
<div id="text-box">
However, my issue is that I want this div to load after all other content on the homepage has loaded. Currently, it loads first, which doesn't look good. I need to fix this and ensure it loads after all other page content has loaded. Thank you!