Announcement

Collapse
No announcement yet.

Section list with subsections as bullets

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Section list with subsections as bullets

    Currently on my site, the javascript section list in a box (in Smart theme, V9) just shows sections at the moment, and I'd like to add sub-sections as bullets to the sections in this box.
    Has anybody managed to implement this in Actinic?
    If so, how?
    Last edited by Rod Duggan; 08-Jul-2009, 03:34 PM. Reason: non-response

    #2
    Not sure if you have sorted this yet but switch to the outer layout in the design tab and look for the line

    HTML Code:
    strIDs += '<a href="' + ar[i].pChild[j].sURL ...........
    change (this is the default)

    <span class="actxxsmall">

    to <span class="navBULLET">

    in the actinic.css add at the bottom

    .navBULLET {
    padding-left: 15px;
    background: #fff url('navBULLET.gif') no-repeat;
    }

    you may need to copy over other declarations from the existing span class such as colour, font size etc.

    In a graphics package create a small .GIF image called navBULLET.gif to owrk as the bullet and save to the root of the site folder.

    HTH


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment

    Working...
    X