September 7, 200818 yr Can anyone see why I can't get this image to align next to the text? I can't seem to budge it from underneath??? tried everything pls help for I go out of my mind I know its something small I'm missing... <div class="homewrapper"><div class="hometext"> <p class="style1"> This is the text which needs to be aligned left </p></div> <div class="clientlogin"></div></div> and my CSS... .clientlogin { float:left; Width:200px; height:300px; background-image: url(../images/clientlogin.jpg); } .hometext { width: 450px; margin: 10px; } .homewrapper { width: 800px; margin: 10px; } Thanks in advance...
September 7, 200818 yr How about floating the text to the left also: .hometext { width: 450px; margin: 10px; float:left; }
September 7, 200818 yr Author How about floating the text to the left also: .hometext { width: 450px; margin: 10px; float:left; } NICE ONE! Thanks very very very much I've started getting a headach been looking at it that long...
Create an account or sign in to comment