Topic: Disable link in header-bar

how to disable links in header so that i have only what i want to be showed , illustration:

http://img502.imageshack.us/img502/6828/37796733.jpg

2

Re: Disable link in header-bar

I don't know your language but I assume that second link is Userlist. Then just add to min/Oxygen.min.css

#brd-navlinks li#navuserlist{
display:none;
}

Don't know the last one, but it works the same way.

If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

Re: Disable link in header-bar

The last one is Post Ratings.

4

Re: Disable link in header-bar

So add at the very end of min/Oxygen.min.css

#brd-navlinks li#navtoprated, #brd-navlinks li#navuserlist{
display:none;
}

Note that if you change theme or whatever, You'll have to add this to this new one. However it's the simplest way.

If any of my dropbox link fails with 404 error, change dl.dropbox.com/u/56038890/punbb/*.zip in address to 82283017.

Currently working on rPlus - responsive theme for developers to create their own themes basing on this one.

Re: Disable link in header-bar

thx big_smile