Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

css list issue

  • 08-03-2006 1:26pm
    #1
    Registered Users, Registered Users 2 Posts: 252 ✭✭


    Hi,

    I have a menu link in the image attached
    when ever a menu option drops onto two lines it appears like A.
    I would link it to be like B though (text aligned).
    Does anyone know how ....

    HTML CODE :
    <ul id="subnavlist1">
    <li id="nactive"><a href=".............." class="images">Reactive Support</a></li>
    <li id="nactive"><a href="............" class="images">Proactive Support</a></li>
    </ul>
    

    CSS CODE:
    #subnavlist1 #nactive{ width:120px!important;width:130px; border-bottom:1px dashed #A09E92;padding-bottom:5px;background: url(../images/menu-bullet-1.gif) no-repeat 0 2px;}
    #subnavlist1 a:link,#subnavlist1 a:visited{color:#55ABC4;font-size:12px;font-weight:bold; padding-left:13px;}
    #subnavlist1 a:hover{text-decoration:underline;}
    

    Tnx


Comments

  • Closed Accounts Posts: 2,046 ✭✭✭democrates


    Try adding
    display:block;
    into the
    #subnavlist1 a:link,#subnavlist1 a:visited
    style selection.


Advertisement