View Single Post
Old 03-14-2008, 04:25 AM   #4 (permalink)
DeMo
The Contributor
 
DeMo's Avatar
 
Join Date: Jan 2008
Location: Brazil
Posts: 77
Thanks: 14
DeMo is on a distinguished road
Default

By marquee do you mean the <marquee> tag?
If so, you can add some blank spaces (&nbsp;) between the items.

Or you can create a CSS class with padding on the sides:
CSS Code:
.marquee_item {
  padding-left: 10px;
  padding-right: 10px;
}
Then you apply this style to every marquee item:
HTML Code:
<span class="marquee_item">Item 1</span><span class="marquee_item">Item2</span>
Send a message via ICQ to DeMo Send a message via MSN to DeMo Send a message via Skype™ to DeMo
DeMo is offline  
Reply With Quote