burbs
Newbie   Posts: 2 Registered: 12/31/2004 Status: Offline
|
posted on 10/25/2005 at 12:23 PM |
I'm running an autothemed site and was wondering if there was a way to
change the bullet or arrow or whatever that is in front of your menu links.
Like this site has black bullets in the left blocks, my site has smaller
white bullets. I know that the main postnuke menu wasn't a list before the
last release, but I think they were supposed to implement it in 760. If
they did, where do I put the html to call the style I put in my stylesheet?
I thnk the csst should be something like this...
#navcontainer ul { list-style-image: url("../images/bullet.gif"); }
But where to call it in leftblocks and how to call it is beyond my
knowledge. I'm guessing it would be something like :
<div id="navcontainer">
<ul>
<li><a href="#"></a></li>
</ul>
</div>
but where does it go?
[Edited on 25/10/2005 by burbs]
[Edited on 25/10/2005 by burbs] |
| |
| |
Shawn
Administrator   Posts: 4538 Registered: 10/7/2002 Status: Online
|
posted on 10/25/2005 at 01:55 PM |
To change all unordered lists, then you would just use:
ul { list-style-image: url("../images/bullet.gif"); }
To do just the ones in left blocks, do something like this:
.left-block ul { list-style-image: url("../images/bullet.gif"); }
Then in your leftblock.html you can do something like this:
<div class="left-block">
<!-- [block-content] -->
</div>
To do just a single block it would be:
#myblock ul { list-style-image: url("../images/bullet.gif"); }
Then in your leftblock.html you can do something like this:
<div id="myblock">
<!-- [block-content] -->
</div>
-Shawn |
| |