Changing site title color
-
Hi , I would like to change the site title DigitalDidi from white to black in color. Is there CSS that can help me do this?
Can I also change the color of the button texts from white to black?Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi, with the premium or business plan, you can access the CSS for your theme by launching the sites customizer. You can change the color of the site title and the color of the button text.
Click the following link to view instructions on how to launch your theme customizer and edit the CSS.
https://en.support.wordpress.com/custom-design/editing-css/Title CSS…..
}
#home-banner #banner-text .main h2 {
color: #fff;
font-size: 3.5em;
line-height: 1em;
margin-bottom: 15px !important;
}Button CSS ……..
.button, a.button, #footer a.button, #searchsubmit, input[type=”submit”], div#infinite-handle {
background: #313131 none repeat scroll 0 0;
border: medium none;
border-radius: 4px;
color: #fff;
cursor: pointer;
display: inline-block;
font-family: “Helvetica Neue”,Helvetica,Arial,sans-serif;
font-size: 0.9em;
font-weight: bold;
line-height: normal !important;
margin: 0 3px 0 0;
padding: 15px 20px;
position: relative;
text-decoration: none;
transition: all 0.5s ease 0s; -
Thanks a lot. I already have CSS activated for this blog. And I currently already have some CSS that I am using. I tried using the CSS you sent for the title but it didn’t work…
this is the CSS i currently have for the home banner-text. maybe it’s messing up the CSS you just wrote out?
#banner-text {
margin-top: 180px !important;
font-size: 16px;
}
I also tried replacing the above with your CSS but to no avail! -
Hi, I’m sorry I didn’t mean for you to change the CSS coding. I should have been more detailed. The CSS I provided was what I saw within your theme. I was directing you on what to look for within your theme for the Title CSS and for the button CSS and make the changes to that section of code. You just need to change the color: #fff to #000
Keep the banner text you originally had in the theme and just change the color code.
-
-
- The topic ‘Changing site title color’ is closed to new replies.