Ich sitze grad an einem für mich nicht zu lösenden Problem mit dem Fieldset der Sidebar. Ich habe per CSS alles angepasst wie ich es wünsche, bekomme aber bei einigen Fieldsets den Rahmen nicht korrekt angezeigt.
Bei einigen Fieldsets wird er korrekt grau rundherum angezeigt, bei anderen ist er unten weiß statt grau.
Weiß jemand, was ich da falsch gemacht habe?
CSS
#main > div > div > .sidebar {
background: rgba(224,209,214,.6);
border-left: 1px solid;
border-right: 1px solid;
}
.sidebar fieldset {
min-width: 280px;
background-image: linear-gradient(#707ba1, #92b0d0)!important;
color: #333333;
width: 280px;
margin-left: 10px;
margin-bottom: 10px;
padding: 14px 7px 7px 7px;
border: 1px solid;
border-color: #40383b;
border-radius: 10px 10px 10px 10px;
}
.sidebar fieldset > legend
{color: #40383b;
background-image: linear-gradient(#93b6c2,#92b0d0)!important;
padding: 10px;
margin-left: -8px;
min-width: 258px;
width: 258px;
border: 1px solid;
border-color: #40383b;
border-radius: 10px 10px 0 0;}
.sidebar a
{color: #40383b;}
Display More