-
AuthorPosts
-
December 23rd, 2015 at 04:23 #34926
Ken J
Hello. I am trying to change the color of the Tagline.
I put in a “color” line (row 5 below) but it is not working. Does anyone have any suggestions?
#site-description {
display: block
float: left;
font-size: 22px;
text-color: #333333
margin-top:5px;
padding:3px 6px 3px 0;
clear:both;December 26th, 2015 at 19:17 #34956Zed
Cryout Creations mastermindYou’re missing the semicolon after the text-color declaration:
text-color: #333333;
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 13th, 2016 at 04:58 #35153Ken
Thank you Zed so much for trying to help. It is greatly appreciated.
So I put in a “;” as you suggested, and on a test site that worked. I am not sure if there is a bug though on the Tempera. I put this code in:
#site-description {
display:inline;
float: left;
font-size: 15px;
margin-top: 18px;
padding:6px 6px 6px 0;
text-color: #0000ff;
clear:both;Per my research this should be blue, but it is remaining as a light gray. (http://goingwiththepitch.com/)
Should the “clear:both;” be there? Is it maybe the color background I chose?
(Lastly, how should I be reading the padding of 6px 6px 6px 0″?
January 14th, 2016 at 10:49 #35168Terry
Have you added the closing } bracket for the CSS?
January 14th, 2016 at 13:37 #35191Zed
Cryout Creations mastermindIf you only want to change the color, only use the color styling. Don’t copy the entire theme CSS for each tag you’re customizing:
#site-description { color: #0000ff; }
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic.January 16th, 2016 at 20:04 #35247Ken J
Thank you for trying to help.
Terry, this is what I have right now.
#site-description {
display:block;
float: left;
font-size: 15px;
margin-top: 12px;
padding:6px 12px 6px 0;
color: #0000ff;
}Per Zed’s note, I did try just
#site-description {
color: #0000ff;
}Neither seem to be responding very well. Is it possible the issue is something with the header (color) or image I am using?
January 30th, 2016 at 22:27 #35403Zed
Cryout Creations mastermindAre you using this in the theme’s Custom CSS field or somewhere else?
If you like our creations, help us share by rating them on WordPress.org.
Please check the available documentation and search the forums before starting a topic. -
AuthorPosts
The topic ‘Site Description’ is closed to new replies.