Quote:
Originally Posted by PakFuse
Nice
can you guide me a bit on how to do it...? (I will have 16x16 images - much like emoticons)
Don't worry I am not a novice in Javascript etc. but not a pro as well... so would need a pointer or two
Thanks for the great work man.
|
Hi PakFuse
The menu links are done in HTML, so they are very easy to edit with a basic knowledge of HTML.
I take it you want something like this??
All you need to do is to add this to the description part of the tab link, first find the Menu link that you want to add a picture to
Code:
<li><a href="http://www.ukbusinesslive.co.uk/forum/faq.php" title="Search F.A.Q">Search F.A.Q</a></li>
Then look at the end of the code where we see >
Search F.A.Q </a>
and what we need to do is to add our code in between the > < but infront of the "Search FAQ
So this is the code were going to add
Code:
<img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/film.gif" border="0">
You can call a file from your servers image/misc directory or photbucket or another image host like i did and we need to copy that line of code directly in front of the Search F.A.Q but inside the two > <
Like this
Code:
<li><a href="http://www.ukbusinesslive.co.uk/forum/faq.php" title="Search F.A.Q"><img src="http://i475.photobucket.com/albums/rr114/ukbusinesslive/film.gif" border="0">Search F.A.Q</a></li>
</ul></li>
If you do that with all your dropdowns then it should look quite cool.
Have Fun