Announcement

Collapse
No announcement yet.

Display problems with Mozilla / Firefox

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

    Display problems with Mozilla / Firefox

    I have noticed that my site behaves differently in these browsers.

    http://www.rfsolutions.co.uk/newsite.../products.html

    When you move the pointer over the section links all the text is highlighted. Could anyone shed some light on why this is happening / a possible fix?
    <a href="http://www.rfsolutions.co.uk">RF Solutions Ltd - Remote Control, Bluetooth, Zigbee, RFID, GSM and GPS Products</a>

    #2
    I think this is to do with the following code in Act_ProductBody.html...

    <A NAME="sectiontop">
    <DIV ALIGN="CENTER">
    NETQUOTEVAR:PARENTSECTIONSTOP
    </DIV>
    <!-- NETQUOTEVAR:TOPLEVELSECTIONSTOP -->
    NETQUOTEVAR:SECTIONLISTTOP
    NETQUOTEVAR:TOPSECTIONSEPARATOR
    NETQUOTEVAR:CARTERRORLISTXML
    </A>

    Having the <A NAME="sectiontop"> ... </A> going around all the section links means that Mozilla-based browsers are treating them as the same link (hence, everything gets underlined).

    Change this code to...

    <A NAME="sectiontop"></A>
    <DIV ALIGN="CENTER">
    NETQUOTEVAR:PARENTSECTIONSTOP
    </DIV>
    <!-- NETQUOTEVAR:TOPLEVELSECTIONSTOP -->
    NETQUOTEVAR:SECTIONLISTTOP
    NETQUOTEVAR:TOPSECTIONSEPARATOR
    NETQUOTEVAR:CARTERRORLISTXML

    Comment

    Working...
    X