How to change description text color on my website pages ?
-
Hi,
I would like to know how can I do to change the color of the text written as categories descriptions on my site ?
Thank you !The blog I need help with is: (visible only to logged in users)
-
I would like to know how can I do to change the color of the text written
For the color, see here:
https://en.support.wordpress.com/visual-editor/#row-2 (4. button) -
I’m not speaking about the post text color but about the categories description text color.
Thank you. -
I do not speak about the text written on the comments of the blog.
I realized a menu from the categories of my blog and when I click one of her it opens a page with the title of page, its description then the comments down.
It is the color the text of description that I shall want to change.
Thank you.
-
I do not speak about the text written on the comments of the blog.
I realized a menu from the categories of my blog and when I click one of her it opens a page with the title of page, its description then the comments down.
It is the color the text of description that I shall want to change.
Sorry for my mistake!
-
-
If your theme provides feature of custom css You can defining css for Categories individually
-
-
-
Someone could help me with the css code to enter please ?
I would like to change the color of the text written below the title of page like here : http://www.lesptitesmerveillesdeberenice.wordpress.com/category/deco/
The one in shadow black. I would like it in white or grey, but not black.Thank you !
-
Hi again! :)
You can do it with this CSS code:
.hero .taxonomy-description { color: white; }Just in case you would like to modify your title, you should use this other selector=> .hero .page-title. So, if you want to change both colors at the same time, you could use this CSS code (in this case to a light gray):
.hero .page-title, .hero .taxonomy-description {
color: rgb(220,220,220);
}I hope this helps you.
-
Thank you !
The original description as got a shadow on the text, how can I do to have the same now ? -
In fact, the shadow is there, but as this shadow is white, you can not easily see it :)
You can modify your shadow parameters with this CSS Code. For instance, this will make your shadow to be red:
.hero-image .hero { text-shadow: 0px 0px 4px rgba(255, 0, 0, 0.5); }Three first parameters in rgba(a,b,c,d) are to define shadow color and the last one, the opacity (0 to 1).
-
-
And what does I write to have a white shadow?
.hero-image .hero { text-shadow: 0px 0px 4px rgba(255, 255, 255, 0.5); } -
-
-
@galois: Gracias tío!
And how can I do to have the same text in strong ?
Just add font-weight: bold;
And with the text in medium grey ?
Take into account who to define a color. The property value rgb(nb,nb,nb) define colors with three numbers from 0 to 255 each one referring to the amount of RED, GREEN and BLUE, respectively. You can use http://www.rapidtables.com/web/color/RGB_Color.htm to choose a color and then code it. For instance:
rgb(200,200,200)
I hope this helps you.
-
-
- The topic ‘How to change description text color on my website pages ?’ is closed to new replies.