Hi!
Does anybody know where I can find a thread about to how to make links in the menu bar with images like this example:
iliveshed.com
Thanks in advance!
the site that I try tu build is
yoamomexico.org
Indexhibit version: Legacy
Thread is not resolved.
Hi!
Does anybody know where I can find a thread about to how to make links in the menu bar with images like this example:
iliveshed.com
Thanks in advance!
the site that I try tu build is
yoamomexico.org
Hello,
Did you try Usefull Threads ?
Did you made a search ?
As lemathieu said, you have to check the forum!
One Solution: I know this is a dirty hack but maybe you can work with it.
Check you File ndxz-studio->site->plugin->index.php
at line 184 there is this code:
li class='section-title'
change it to
li class='section-title ". $key ."'
then you will get a extra css class you can stile with whatever you want.
You might need to neuter the key though...perhaps making it all small caps and without spaces...
li class='section-title sec-". strtolower(str_replace(' ', '-', $key)) ."'And I would preface it with something - it's a little easier to read in your CSS that way - keep track of things.
li.sec-title-1 a { background: url(/path/to/image/title-1.gif) no-repeat;display: block;height: 40px;etc...etc...etc... }Many ways to do this actually...
You need to be logged in to post.