Announcement

Collapse
No announcement yet.

parent section links

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

    parent section links

    I logged this already but did not get a reply so apologies for logging it again...

    Can somebody have a look at this link:
    http://www.arbrownlow.com/acatalog/Evo-stik.html

    On the top of the page is the following
    Maintenance > Adhesives & Sealants > Evo-stik

    Can I make these links appear as inactive links. I want it to show the customer where they are.. but as I am using the drop down menu bar so I dont want these links to refer back to other pages?

    #2
    Originally posted by lee05
    Can I make these links appear as inactive links. I want it to show the customer where they are.. but as I am using the drop down menu bar so I dont want these links to refer back to other pages?
    well, from a search engine optimisation perspective, its never a good plan to remove the links, so styling them using css is probably a good plan.

    opening 'act_parentsectionslink.html' and editing:

    <A HREF="NETQUOTEVAR:SECTIONLINK"

    to say:

    <A CLASS="hidelink" HREF="NETQUOTEVAR:SECTIONLINK"


    then, in the misc section of the template manager, add this at the end of your actinic.css:

    .hidelink {
    color: #000000;
    text-decoration: none;
    }

    will remove the underline, and make the text black.

    if you need to remove the links alltogether, and thats never wise, you can strip the link out of act_parentsectionslink.html, just delete everything in there and put:

    NETQUOTEVAR:SECTIONNAME

    was that what you wanted?
    Last edited by gabrielcrowe; 12-Jul-2006, 09:54 AM. Reason: oops, silly typos...

    Comment


      #3
      Yes thank you.
      ________
      R1100RT

      Comment

      Working...
      X