I'm having trouble styling the anchors with in this list. I've tried several variations of the css below to remove the text decoration dot infront of the anchors in the UL. I must not be referencing the elements correctly in the style sheet. Does anyone
see what I'm missing?
newbie2C#
Member
694 Points
1179 Posts
Can'r remove text decoration for anchors
Feb 18, 2012 11:08 AM|LINK
I'm having trouble styling the anchors with in this list. I've tried several variations of the css below to remove the text decoration dot infront of the anchors in the UL. I must not be referencing the elements correctly in the style sheet. Does anyone see what I'm missing?
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent"> <div class="left_column">....</div> <div class="right_column"> <h2>header</h2> <ul class="blog_links"> <li><a href="http://link/" target="_blank">link text</a></li> <li><a href="http://link/" target="_blank">link text</a></li> <li><a href="http://link/" target="_blank">link text</a></li> </ul> </div> </asp:Content>div.right_column ul li { text-decoration: none; div.right_column ul.blog_links li a { text-decoration: none; }