Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Static div over slider Reply To: Static div over slider

#175220
Alan C
Participant

Well you would use percentages to size things, or possibly vw units if you don’t care about total acceptance. Then just keep resizing the browser and check on phones ect using media queries to change it where needed.

But something like this would get you started

.blue-caption {
    height: 100%;
    position: absolute;
    left: 50%;
   margin-left: -15%;
    width: 30%;
}