Problem With Twitter Widget Link Font Size
On this site the Twitter widget in the sidebar appears to be taking instructions from the sidebar's CSS. The links are obviously way too big. Is there a way to i开发者_如何学编程solate it from the sidebar's CSS while keeping it in the sidebar?
Thank you - Tara
Don't use #sidebar a to assign styles to your links. A tags in the sidebar are picking up your style. Give your links their own class and change the font size that way.
CSS: a.mylinks {font-size: 16px;}
And code:<a class='mylinks' href='whatever.htm'>Link</a>
Edit
Change your CSS selector from #sidebar a
to #sidebar li a
as show in my comment below.
精彩评论