I'm trying to change the font of a widget used on my website. I need to know how to do this using CSS. Any help much appreciated.
I'm trying to change the font of a widget used on my website. I need to know how to do this using CSS. Any help much appreciated.
If you could post the code you're using, it would be helpful.
How do you want the font changed? Size, bold, italic, underline?
Here it is
<H2></H2>
<UL id=twitter_update_list></UL><A style="PADDING-BOTTOM: 10px; DISPLAY: block; COLOR: #000000; MARGIN-LEFT: 0px" id=twitter-link href="http://twitter.com/USER"></A>
<UL></UL>
<DIV></DIV>
<SCRIPT type=text/javascript src="http://twitter.com/javascripts/blogger.js"></SCRIPT>
<SCRIPT type=text/javascript src="http://twitter.com/statuses/user_timeline/USER.json?callback=twitterCallback2&count=1"></SCRIPT>
Also I want the font changed to Courier..
Okay, that's one part. But what do you want done to the font?
How do you want it to look?
Just saw the post above ^^
Code:<A style="PADDING-BOTTOM: 10px; DISPLAY: block; COLOR: #000000; MARGIN-LEFT: 0px; font-family:Courier" id=twitter-link href="http://twitter.com/USER"></A>
It (the feed) appears on my website in Times New Roman, I want it to match the rest of my website which is in Courier New.
Probably to do with the other element, try this:
Better done through CSS, although this will do what you want.Code:<UL id="twitter_update_list" style="font-family:Courier"></UL>
Thank you for your help, where should I put that code? in place of the old one or inside the old one?
In place of it.
Works a treat thank you so much!
Bookmarks