Style type text/css over riding element?
In my theme BM Ebay I can set p.p1 to be a color other than black but it does not change. After going through the code and deleting random stuff to figure out the cause I discovered the culprit was the element above it:
"Style type="text/css""
http://s10.postimg.org/5kh3obm49/wtf.png
Which sets the text of p.p1 to be #000 in plain text. Is there any way to change the color of p.p1 with stylish or will the seller description box be gone forever requiring me to delete the theme to avoid people buying stuff on accident?
"Style type="text/css""
http://s10.postimg.org/5kh3obm49/wtf.png
Which sets the text of p.p1 to be #000 in plain text. Is there any way to change the color of p.p1 with stylish or will the seller description box be gone forever requiring me to delete the theme to avoid people buying stuff on accident?
Comments
Use CSS specificity.
For example (from your screenshot)
style + p.p1 { color: #F00; }
or use 'lazy mode'
p.p1 { color: #F00 !important; }
http://www.ebay.com/itm/331594937985?_trksid=p2060353.m2749.l2649&ssPageName=STRK:MEBIDX:IT
If you notice after the detailed item info box it should say "Case, disc and manual only. No insert. Tested and working" but no matter what I do I can not change the color of that text.
@Lou I tried p.p1 using important already and it did nothing. And following your suggestion I also quoted your first code block and that did nothing as well.
...Oh, and the screenshot of Inspector is exactly what was wanted here. And, if you haven't already done it, in the Developer Tools preferences (click the "gear" icon at the top right) enable "Inspector > Show Browser Styles" so you can see the Stylish rules, too.
If you guys want to give him instructions on how to do it himself, that's great, but adding "ebaydesc.com" as a domain eliminates the "tricky part". It's broad enough to cover all your bases and specific enough to have no adverse effects.