Space Html
- Scotttheskaterr
-
Scotttheskaterr
- Member since: Jun. 16, 2005
- Offline.
-
- Forum Stats
- Member
- Level 13
- Blank Slate
What would be a space in html i know <br> moves whatever you need down but i want something to move horizantally. Thanks.
- Mister-Mind
-
Mister-Mind
- Member since: Jul. 1, 2006
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
I think you mean alignment then right, Theres 2 ways to move things over, Both using CSS, theres position relative, and position absolute, you can use them for aligning text which I think is what you want to do
position absolute code:
<style type="text/css">
h2.pos_abs
{
position:absolute;
left:100px;
top:150px
}
</style>
Thats the code for position absolute, I got it off w3schools, you can use it to align text to where ever you want, just define the position in pixels.
Position Relative code:
Its pretty much the same just a tiny bit different, I suggest that you use position absolute.
Sorry for the long post.
Good luck,
- Mister-Mind
-
Mister-Mind
- Member since: Jul. 1, 2006
- Offline.
-
- Forum Stats
- Member
- Level 07
- Blank Slate
Sorry for the double post,
But if you want to learn completly about positioning, you should go to w3schools.
The positioning tutorial is below.
click here
good luck. =D
- Sp1kY
-
Sp1kY
- Member since: Jul. 27, 2006
- Offline.
-
- Forum Stats
- Member
- Level 01
- Blank Slate
Hi there,
I can't be completely sure if its what you want, but If you want to create a blank space equal to a capital M, the html entity code should work fine.
THanks
- Scotttheskaterr
-
Scotttheskaterr
- Member since: Jun. 16, 2005
- Offline.
-
- Forum Stats
- Member
- Level 13
- Blank Slate
Well here i dont think those work i wanted to align my header (see link) I want Leap of Faith rocks in the middle of the screen not on a certain side. In other word i want it more right.
- DannyIsOnFire
-
DannyIsOnFire
- Member since: Apr. 14, 2005
- Offline.
-
- Forum Stats
- Member
- Level 21
- Movie Buff
At 8/23/06 11:27 AM, Scotttheskaterr wrote: What would be a space in html i know <br> moves whatever you need down but i want something to move horizantally. Thanks.
If your talking about what i think your talking about, a space is
- JeremysFilms
-
JeremysFilms
- Member since: Feb. 18, 2005
- Offline.
-
- Forum Stats
- Member
- Level 18
- Blank Slate
At 8/23/06 11:59 AM, DannyIsOnFire wrote:At 8/23/06 11:27 AM, Scotttheskaterr wrote: What would be a space in html i know <br> moves whatever you need down but i want something to move horizantally. Thanks.If your talking about what i think your talking about, a space is
Better explained, if you write it will be parsed as a space because it is the HTML entity of the space character, just as < is the entity of < etc.
- DFox
-
DFox
- Member since: Aug. 9, 2003
- Offline.
-
- Forum Stats
- Member
- Level 30
- Blank Slate
Here's a pretty good list of HTML entities for reference: http://www.w3schools..ags/ref_entities.asp



