a little CSS help please

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • X37375787
    • Jul 2026

    #1

    a little CSS help please

    a:link displays a border, which I don't want to be shown for linked images. how do I specify that?


    img.a { border: none;}

    img a {border: none;}

    both don't seem to work well. ideas?
  • JSA Matt
    So Fucking Banned
    • Aug 2003
    • 5464

    #2
    why not set border=0 on the image?

    Comment

    • X37375787

      #3
      because I need to set it globally for phpadsnew banners that are shown on the page

      Comment

      • swedguy
        Confirmed User
        • Jan 2002
        • 7981

        #4
        a img { ..... }

        or

        img a {..... }

        It's one of those orders.

        Comment

        Working...