Simple Machines Community Forum

Customizing SMF => Bridges and Integrations => Topic started by: DogmanTHC on July 17, 2009, 10:21:20 PM

Title: SSI navbar-removing bullets
Post by: DogmanTHC on July 17, 2009, 10:21:20 PM
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. 
Title: Re: SSI navbar-removing bullets
Post by: Reflection on July 18, 2009, 11:29:36 AM
Attach the code you're using to call them down with...
Title: Re: SSI navbar-removing bullets
Post by: DogmanTHC on July 18, 2009, 02:08:32 PM
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>


Title: Re: SSI navbar-removing bullets
Post by: H on July 31, 2009, 09:49:04 AM
Do you mean that the navbar function code has extra bullets than the ones already in your own code?
Title: Re: SSI navbar-removing bullets
Post by: Reflection on July 31, 2009, 02:07:26 PM
Looks to be that way.

I'd suggest just returning the data and then inserting your own HTML code..
Title: Re: SSI navbar-removing bullets
Post by: Kindred on August 01, 2009, 07:59:23 PM
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.