View Single Post
Unread 10-19-2008, 03:39 PM
equilter equilter is offline
Junior Member
Join Date: Oct 2008
Posts: 9
  #3  
Default

Thanks for your reply.

1. In what file do I put the code, and where exactly???

2. Same question, where exactly do I put the code, and in what file???
And where do I specify the image file of the icon I wish to have displayed along with the text for this Menu ?

3. Elaborating on question #3, I want to have the navigation bar in TWO ROWS, and I want to be able to clearly specify where the line break occurs between the two lines of the navigation bar. Please advise.


Quote:
Originally Posted by Admin View Post
Yes, you can easily do these things with UDM.

For 1), just create a new CSS style like this...

Code:
#udm li a.hover {
    text-decoration:none;
}
#udm li a.hover {
    text-decoration:underline;
}
For 2) add an id to the menu item in question...

Code:
<ul>
    <li id='my_id'><a href='somewhere'>Link here</a></li>
    ...
</ul>
Then create a custom css rule...

Code:
ul li#my_id {
   background-image: url("/path/to/image.gif");
   background-repeat:no-repeat;
}
For 3) not 100% sure what you mean, can you elaborate?

Some other links that you may find helpful...

http://www.udm4.com/manual/developme...ernal-imagenav

http://www.udm4.com/manual/customising/classes/
________
Lada niva

Last edited by equilter : 04-28-2011 at 06:04 AM.
Reply With Quote