Announcement

Collapse
No announcement yet.

brochure page menu the links do not work correctly

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

    brochure page menu the links do not work correctly

    Hi

    in the products sections the link "new products" in not working correctly.

    In the brochure page menu the links do not work correctly well they do if you roll over them very slowly.

    Please could you help me solve these issues.

    Its one of them issues where you just cant see the problem

    #2
    It works fine in firefox, so i'm guessing its a padding issue.

    Try and find the '.text_heading_left_column' in the actinic style sheet
    e.g.
    Code:
    .text_heading_left_column {
        margin: 0px;
        padding: 19px 0px 4px 0px;
        line-height:normal;
        color: #81a400;
        font-weight: 900;
        font-size: 13px;
    }
    and see if changing the padding and margins declarations round and see if that makes any difference

    e.g.
    Code:
    .text_heading_left_column {
        margin: 19px 0px 4px 0px;
        padding: 0;
        line-height:normal;
        color: #81a400;
        font-weight: 900;
        font-size: 13px;
    }
    Paul
    "If my answers frighten you then you should cease asking scary questions"

    Comment


      #3
      Thanks thats it, i was wondering if this was the css but thought no it cant be lol

      Comment


        #4
        Result! Glad it worked
        "If my answers frighten you then you should cease asking scary questions"

        Comment


          #5
          I think the menu could be coded in a much better and efficient way, there's at least 50% more code than needed and the use of shims really should have been retired about 5 years ago. Each link being it's own UL is rather bizarre, if not an insane way to code what is essentially a plain bullet list.

          Comment

          Working...
          X