The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
I'm guessing it's because you have the border attribute being rendered for each <a> element in the <ul>. Try moving the border 1px solid #000 to just the <ul>. That's my guess without actually seeing the page itself.
Edit: Just tested it - that works. However, if you want borders around each element, here's something to consider:
Also is it possible loading the links inside the navigation panel into the content area?
Example, I have some text that I want displayed in the content area when pressing the links in the navigation panel.
something like this:
function displayText() {
document.getElementById('description').innerHTML='newtext';
}
<a href="" onClick="displayText();return true">Click Here To Display Text</a>
and then in your html somewhere have a div or span with id of 'description'
<div id="description">
Old Text being displayed
</div>
Posts
Edit: Just tested it - that works. However, if you want borders around each element, here's something to consider:
Also is it possible loading the links inside the navigation panel into the content area?
Example, I have some text that I want displayed in the content area when pressing the links in the navigation panel.
something like this:
and then in your html somewhere have a div or span with id of 'description'