• Hallo,

    habe ein klitzekleines CSS Problem.
    Ich benutze ein Background-Image mit Farbverlauf und würde gerne den Hintergrund der Boxen rechts und links transparent werden lassen.

    Es scheint sich um diese Definitionen aus der struktur.css zu handeln aber wie bekomme ich diese #outerContainer denn transparent ?

    Vielen Dank für Eure Hilfe

    Code
    #outerContainer_3col { border-left: 190px solid #EDEDED; border-right: 190px solid #EDEDED; z-index: 1; margin-top: 229px; width:608px; w/idth:613px; }
    #outerContainer_2col_left { border-left: 190px solid #EDEDED; z-index: 1; margin-top: 229px; width:792px; padding-right: 6px}
    #outerContainer_2col_right { border-right: 190px solid #EDEDED; z-index: 1; margin-top: 229px; width:792px; padding-left: 6px }
    #outerContainer_1col { z-index: 1; margin-top: 226px; width:987px; }
  • Code
    #outerContainer_3col { 
    border-left: 190px solid transparent;
    border-right: 190px solid transparent; 
    z-index: 1; 
    margin-top: 229px; 
    width:608px;
    w/idth:613px; }