user links display horizontally

I would like to display the user links (sitemap -- advanced search -- ..) to display horizontally.
Now they are displayed in block

I changed already the user_links.phtml the same was as links.phtml but it still shows the user_links vertically.

Kind regards,
Kristel

1 answer

Profile photo of JA Developer 0.00 $tone December 19, 2009
Public

Hi there

Please open skin/frontend/default/jm_sulfur/css/theme.css file, at about line 572, find following code section:

Code:

#ja-botsl li {
	padding: 6px 0;
	background: none;
	display:block;
	overflow:hidden;
	width:100%;
}

and change to:

and change to:

Code:

#ja-botsl li {
	padding: 6px 0;
	background: none;
	display:block;
	overflow:hidden;
	width:100px;
        float: left;
}

Also, you have to make sure that the width of block is larger than number of items + 100px

#1

This question is now closed

Written By

Comments