Announcement

Collapse
No announcement yet.

Section name needs to be red

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

    Section name needs to be red

    I'm using Actinic Business Plus 10.0.2 on Windows 7 (SMART template)
    I want the section name to be a different colour than the sub section names
    I can remember doing it on Actinic 7 by changing the Yahoo Section tree thingy and adding a color=red somewhere but can't seem to find it on Actinic 10

    #2
    V10 Smart Theme still uses the YahooSections code. The JavaScript is now in your Overall Layout - Works Best With Smart .

    Look for the line:
    Code:
        strIDs += '<a href="' + ar[i].sURL + '"><span class="actxxsmall"><b>' + ar[i].sName + '</b></span></a><br />';
    and change to:
    Code:
        strIDs += '<a href="' + ar[i].sURL + '"><span class="actxxsmall"><b style="color:red;">' + ar[i].sName + '</b></span></a><br />';
    This answers your question, but you may want to consider using an alternative to this JavaScript code as it's not search engine friendly and may require the loading of a HUGE act_section_tree.js file if you have a lot of pages on your site.

    The Advanced Guide article "Section List With Sub Sections In Bullets" would be a good alternative and it will be easy to customise this to show your top sections in red.
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks Norman - from the design tab how do I access the Overall Layout?
      Oh its ok - I figured it out (Design Tree tab - top of list)

      Comment

      Working...
      X