If it will help it works on main page but it won’t works on new page. I was trying to find something in .css but couldn’t find anything about ul/li for new page.
I found it in <style type=”text/css” id=”raindrops-embed-css”></style> when I “view source”. Need to remove color:#d0d0d0 from there. But can’t find this in any file.
Hi ikrekot
Please add to style.css last line below style rules.
.entry-content ol li a, /* ordered lists link */
.entry-content ul li a, /* unordered lists link */
.entry-content ol li, /* ordered lists text */
.entry-content ul li{ /* unordered lists text */
color:#FFFF00;
}
Another Way
Create a custom field
name: css
value: above style rules
then current post ( page ) color will be changed.
Thank you.
I try first
.entry-content ol li a, /* ordered lists link */
.entry-content ul li a, /* unordered lists link */
.entry-content ol li, /* ordered lists text */
.entry-content ul li{ /* unordered lists text */
color:#FFFF00;
}
but it didn’t change url’s but only text.
Then I try
.entry-content ol li a, /* ordered lists link */
.entry-content ul li a, /* unordered lists link */{
color:#FFFF00;
}
Didn’t help too.
Then I use
<div id=”css” name=”css”>code with ul and li</div>
with
#css ul li a /* unordered lists link */{
color: #FFD100!important;
}
in main.css
It didn’t help too. 🙁
What is the main.css
Raindrops has not main.css
My style rules tested at raindrops/style.css.
#css ul li a /* unordered lists link */{
color: #FFD100!important;
}
This style rule is wrong.
The reason: Not exists id=”css”
.entry-content ul li a{
color: #FFD100!important;
}
maybe work
It exist
<div id=”css” name=”css”>code with ul and li</div>
I try
.entry-content ul li a{
color: #FFD100!important;
}
Didn’t help too.
I don’t know why but it works on main page with posts. When I create new page it didn’t work.
page_id=24#Glyphy
<div id="css" name="css">code with ul and li</div>
above is changed elements from javasript?
DOM source is below
<li><a href="http://ptr.wowhead.com/spell=58623" class=" icontinyl" style="background-image: url(http://wowimg.zamimg.com/images/wow/icons/tiny/spell_shadow_antimagicshell.gif); background-position: 0% 50%; background-repeat: no-repeat no-repeat;"><span style="margin-left: 18px;">Glyph of Anti-Magic Shell</span></a>: zwiększa ilość zaabsorbowanych obrażeń z 75% do 100% tym samym zmniejszając czas trwania na walkach z dużymi obrażeniami magicznymi.</li>
Try
#css ul li a span {
color: #FFD100!important;
}
or inline style add margin-left: 18px; + color value from javascript.