Code not saving in stylesheet
-
I’m a student, and we have to work with WordPress and learn/mess around with some CSS, to show a basic understanding of it.
I spaced out my pages on my website, and I also want to change the background color and make the links on page a different color. However, whenever I put those codes in (I was messing around with Firebug) it says it saves, but doesn’t.
Here is what I have saved in there:
#access a {
color:#AAAAAA;
display:block;
line-height:38px;
padding:0 80px;
text-decoration:none;
}And here is what I am trying to add, but it won’t save
body.custom-background {
background-color: #003300;
}.wf-active body {
font-size: 15px;
}a:link {
color: #FF0000;
}Am I doing something wrong? Thank you
-
Firebug is completely awesome for testing, but it cannot be used to save CSS back to a site. You need to make the changes to the site’s CSS separately.
In order to save CSS for a WordPress.com blog, you must have purchased the Custom Design upgrade and then you can add the CSS to your Appearance → Custom Design → CSS page.
- The topic ‘Code not saving in stylesheet’ is closed to new replies.