Top bar

Hehe, I really think you need to explain exactly what your doing, as your threads are getting more and more random :)
 
Last edited:
Hehe, I really think you need to explain exactly what your doing, as your threads are getting more and more random :)
I want to add a other bit at the top that says "Report" and when you click on it it will take you to a forum
Paul, stop spamming, seriously. You need to learn how to use google.
Well it's not spam it's called asking for help!
 
I want to add a other bit at the top that says "Report" and when you click on it it will take you to a forum

Well it's not spam it's called asking for help!

You'd save yourself a load of pain if you read the HTML tutorial @ w3schools.com :)

For your 'problem' the menu is mostly likely made up of list items and looks something like:

Code:
<ul>
       <li>Menu Item 1</li>
       <li>Menu Item 2</li>
</ul>

All you need to do add the menu text inbetween two <li> tags like above.

If the menu uses images, then it's slightly different.
 
You'd save yourself a load of pain if you read the HTML tutorial @ w3schools.com :)

For your 'problem' the menu is mostly likely made up of list items and looks something like:

Code:
<ul>
       <li>Menu Item 1</li>
       <li>Menu Item 2</li>
</ul>

All you need to do add the menu text inbetween two <li> tags like above.

If the menu uses images, then it's slightly different.

I can't find nothing that look like that
 
Well, getting other people to do everything for you is certainly a novel way of approaching learning, not sure how effective it will be though
 
Open the code in your favourite editor. Press CTRL+F and type "Private Messages".

This should find the area of the code which is for the menu bar.

Then make your changes.
 
Back
Top Bottom