Loersian
Member
Posted 1 year ago #
Hello every body :)
I have been trying to change the post title name by editing the CSS file.
I really tried everything possible and searched for hours , but nothing worked.
i tried to change this
#content .entry-title {
color: #000;
font-size: 21px;
font-weight: bold;
line-height: 1.3em;
margin-bottom: 0;
}
into this
#content .entry-title {
color: #030;
font-size: 21px;
font-weight: bold;
line-height: 1.3em;
margin-bottom: 0;
}
as you can see I only want the color to be 030 "Dark Green"
but this aint work.
also I missed around with the "a" tag , but also didn't work.
Platform: WordPress 3.1 / Template: TwentyTen
any help would be appreciated.
thanx for reading :)
.entry-title a { color: #123; } should work (and the realted :hover etc)
http://www.w3schools.com/CSS/css_link.asp
try 'CTRL F5' to clear the browser cache, to make the chages to the stylesheet immediately visible in the browser.
if this doesn't work, some of your other custom styles might be blocking the change;
then, please post a link to your site
Loersian
Member
Posted 1 year ago #
thanx for replying :)
actually I went so far with this and added a new block into the css file:
#content h2 a {
color:#030;
}
and it did not work T.T
but I used the developer tools in IE9 and discovered that the whole matter was because of the color "030" seems to be invalid or sth like that, even tho I picked it using Dreamweaver.
anyways, I just used another color code , that was 360 , and it works as magic :)
#content h2 a {
color:#360;
}
thanks for passing by the thread.