I am using the SSI for the SMF Navbar on my homepage and it shows up with these circle bullets to the left of it. Is there a way I can remove those bullets? I have absolutely no PHP coding ability other than to read and follow the instructions of others as to what to do. I am really not sure if those bullets are being added by the include or my pages CSS/html.
You can see what I am talking about www.thehardcorpsgl.com (http://www.thehardcorpsgl.com) I know there are other things that are wrong on this page but this site is still being developed so I will get to those things.
Attach the code you're using to call them down with...
the left menu code is:
<div id="sidebar">
<div id="box3" class="box bg1">
<div class="title first">
<h2>Main Menu</h2>
</div>
<div class="content nopad">
<ul class="list1">
<li class="first"><?php ssi_menubar(); ?></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li class="last"></li>
</ul>
</div>
</div>
Do you mean that the navbar function code has extra bullets than the ones already in your own code?
Looks to be that way.
I'd suggest just returning the data and then inserting your own HTML code..
why the heck do you have all of those blank li tags?
if you return the menubar function as an array, you can then just build the display using the tags and css classes as you desire.