one sided table border - can anyone help

Discussion in 'CSS' started by Remo, Apr 4, 2007.

  1. #1
    can anyone help with this

    I am working on a joomla site which is here you will see on the property search box its surrounded by a blue box. I am looking to have the border on the left one color and make the others transparent

    All I know is I need to change something here but am not sure what

    
    .pollstableborder {
      width: 100%;
      border: 1px solid #1A2B48;
      padding: 2px; 
    }
    Code (markup):
    any help really appreciated
     
    Remo, Apr 4, 2007 IP
  2. kk5st

    kk5st Prominent Member

    Messages:
    3,497
    Likes Received:
    376
    Best Answers:
    29
    Trophy Points:
    335
    #2
    .pollstableborder {
      width: 100%;
      border: 1px solid transparent;  /*or parent background color*/
      border-left-color: #1A2B48;
      padding: 2px; 
    }
    Code (markup):
    cheers,

    gary
     
    kk5st, Apr 5, 2007 IP
  3. Remo

    Remo Peon

    Messages:
    134
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thank you!
     
    Remo, Apr 5, 2007 IP