html code help - font colour?
hi i have part of a html code (im really just learning the basics by playing with it) im trying to do my about me page for ebay.
here is the code
<td><td bgcolor="#FF0000"><ebayitemlist SORT=2 caption="My Gorgeous Items" SIZE=10 SINCE=-1 displaymode=0 pagesize=0 >
where it says "my gorgeous items" is appearing as black and i want it to be white. ive tried writing text colour white and inserting it in diff places but no luck yet. can anyone give me a code and tell me where exactly to insert it to make it white writing
thanks in advance x
3 Answers
- Anonymous1 decade agoFavorite Answer
Your code is all wrong:
<tr>
<td><span style="background: #f00; font-size: 2em; color: #fff;">My Gorgeous Items</span></td>
</tr>
That will get you a red background with lettering in white. Add the other code as needed.
Ron
- 1 decade ago
Im not sure what the ebay stuff is, try this CSS:
<td style="background: #fff; color: #000;"><td bgcolor="#FF0000"><ebayitemlist SORT=2 caption="My Gorgeous Items" SIZE=10 SINCE=-1 displaymode=0 pagesize=0 >
- 1 decade ago
I would try wrapping it in a span tag:
<span style=" color:White;"><ebayitemlist SORT=2 caption="My Gorgeous Items" SIZE=10 SINCE=-1 displaymode=0 pagesize=0 >
</span>