Support › Forums › Flex Theme › Flex Theme overriding SU code › Reply To: Flex Theme overriding SU code
Hi Davindr,
Yes, I understand. And I did exactly what you mentioned. BUT..
The original code says
.su-note {
margin: 0 0 1.5em 0;
border-width: 1px;
border-style: solid;
}
And your code is
.su-note {
margin: 0 0 1.5em 0;
border: solid 1px #000 !important;
}
so it doesn’t do anything with the border-width code.
Somewhere the color code seems to be in the element.style code, which I see above the su-note code:
element.style {
border-color: #e0e0e0;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.su-note-inner {
border-style:solid;
border-width:1px;
padding:1em;
}
Even setting the original code on
.su-note {
margin: 0 0 1.5em 0;
border-width: 5px;
border-style: solid;
}
thus only changing the pix from 1 to 5, doesn’t change anything…
I think then to let the topic drop, because it just isn’t working.
Thnx for your help and time though,
Kind regards,
Dee
p.s.: if I change the element.style in the inspector, I get a result, but how to get this in the design is a different thing.