box divisions

Messages
1,072
ok so on my site there are box division like <div class="box2M"><center> and I want to put a box right under that but its not working. what I tryed was box3m assuming that would make it appear right under the first box but it dosent work
 
try posting some source so that we can see the trouble.
 
ok im bring this back

<div class="box2M"><center> <a href="/f5dudeandy">Some text blah blah
ok that creates a box in the middle of the page. I guess M standing for middle. So I wanted to make another box right under it So I tryed
<div class="box3M"><center> <a href="/f5dudeandy">
but no change
 
Class means that it has to be defined soemwhere else. I'm not sure if your on myspace or something, but I've seen other posts from you there. When your stating class "box2M", it's saying "Look for the tag called 'box2M' and set its properties likewise." There may not be a box3M.

Two divs can not go on the same line unless there is a code that tells it to.
You don't want them to be on the same line.
Try closing your div tags?
Code:
<div class="box2M">
<center>
<a href="/f5dudeandy">Some text blah blah</a>
</center>
</div>

<div class="box2M">
<center>
<a href="/f5dudeandy">More text</a>
</center>
</div>
 
Back
Top Bottom