PDA

View Full Version : Aligning Please Help



24
24-05-2005, 10:02 AM
Rite on my website ive got a picture at the top like a Title Image but its Aligned to the rite whereas i want to change it to be aligned to the right How do i do this.
www.freewebs.com/bobblemania
thats the site take alook

smurf-you
24-05-2005, 12:38 PM
Well firstly it is on the right but how to get it to the left...


Ok the easiest way would be to go in to design mode on freewebs and go to the line where the image is on. Then where you see a icon that looks margin
then click on the first one and it will move the image to the LEFT handside.

24
24-05-2005, 01:44 PM
Ive tried that but when i go on Design mode and then back on to HTML View the HTML disappears its the most randomest thing in the world.

tbh imo no m8
24-05-2005, 01:46 PM
well apart from tht it looks like it cld b a good site :) keep it up

iRoss
24-05-2005, 02:09 PM
Have you tried this...



<img border="0" src="your image URL here" align="left">


?

tbh imo no m8
24-05-2005, 02:09 PM
simple r u any good with ipb's?

24
24-05-2005, 02:55 PM
okay that reali didnt work lol i just got a border which i didnt want i just wanted to move it <<<<<<rite

Mentor
24-05-2005, 05:07 PM
just put image between <div align="right"></div> tags
so

<div align="right"><img src=" IMAGE URL" border="0" ></div>

Or you could do it by css aka

in head


<style>
.right {
position: absolute;
right: 0;
text-align: right;
top: 0;
}
</style>


Then just ad class tag to image

<img src=" IMAGE URL" border="0" class="right" >

athogh this is persifcly for top right hand corner

Want to hide these adverts? Register an account for free!