Home › Forums › CSS › Help with divs? › Reply To: Help with divs?
August 29, 2014 at 9:03 am
#181060
Participant
Continuing to deal with things one by one: the reason your content doesn’t show up under the image is that .projectheader has position:absolute; That removes it from normal flow. You either need to return it to normal flow by using a different type of positioning, OR insert a dummy element in normal flow with the same height as .projectheader and no visible content (an ugly solution), OR have the entire rest of the page enclosed in a div with position:relative and top: equal to the height of .projectheader. Any of these will make the rest of the page appear below .projectheader, which is what yo want.
Make that fix, and I’ll come back to deal with the SECARES label.