Hi
i must edit some css style
but the file style.css of children theme load after base and all my customization are overring
How fix this?
thx
Hey marcellovoc,
Child theme css has priority over base css, you could be using selectors with lower scpecificity and so they don’t apply (https://developer.mozilla.org/ru/docs/Web/CSS/Specificity).
Could you post a page in question and tell us the changes you’re trying to make?
Best regards,
Victoria
Hi
thx, but me too thinked the style.css in child’s theme have priority but not working so.
http://i64.tinypic.com/v7vyfm.jpg
I have put a id for input text id=name_form_sell
in style.css child theme i have put a rule width:10px;
but the load for first the base.css overring my customization
how solve this? I need the style.css must overring the other rules
thx
oh sorry……i have understand what i have wrong…
the selector must be the same…. xD
now working with
#top input[type=”text”]{
width: 10px;
}
thx solved