Dynadot โ€” .com Registration $8.99

[Html/css] Horizontal list

Spacemail by SpaceshipSpacemail by Spaceship
Watch

liam_d

The original NP Emo KidEstablished Member
Impact
25
Hi all i am having problems making a horizontal list.

It works fine if i have say an avatar or a name so
*name *name *name etc

But if i have say
*avatar *avatar
*name *name

With the avatar and name seperated by a "<br />" then it will mess up the next list item :(.

My code is as follows (without the br):
Code:
		<ul id="friendslist">
		
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" />
			<a href="profile.php?info=8">Tom1</a>
			</li>
			 
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" />
			<a href="profile.php?info=29">Psybadek</a>
			</li>

			 
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" />
			<a href="profile.php?info=14">haseeb</a>
			</li>
			
		</ul>

Code:
#friendslist

{

	padding:0;

	margin:0;

	white-space:nowrap;

	list-style-type:none;

}



#friendslist li 

{

	display:inline;

}

What am i doing wrong?
 
Last edited:
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
GoDaddyGoDaddy
Try this

Code:
<ul id="friendslist">
		
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" /><br />

			<a href="profile.php?info=8">Tom1</a>
			</li>
			 
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" /><br />
			<a href="profile.php?info=29">Psybadek</a>
			</li>

			 
			<li><img src="http://forum.prxa.info//images/noavatar.gif" alt="avatar" /><br />
			<a href="profile.php?info=14">haseeb</a>
			</li>
			
</ul>

And for the CSS

Code:
#friendslist

{

	padding:0;

	margin:0;

	white-space:nowrap;

	list-style-type:none;
	float:left;

}



#friendslist li 

{
float:left;
	display:inline;
	padding:10px;

}

You need to have the float:left; property.
 
0
•••
while that works for the stacking, it seems to put the menu in the div below it?
 
Last edited:
0
•••
Unstoppable Domains
Domain Recover
NameMaxi - Your Domain Has Buyers
  • The sidebar remains visible by scrolling at a speed relative to the pageโ€™s height.
Back