03-14-2008, 04:25 AM
|
#4 (permalink)
|
|
The Contributor
Join Date: Jan 2008
Location: Brazil
Posts: 77
Thanks: 14
|
By marquee do you mean the <marquee> tag?
If so, you can add some blank spaces ( ) 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>
|
|
|