Site logo

[Support request] custom color for bold

Home Forums Support [Support request] custom color for bold

Home Forums Support custom color for bold

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1846135
    Fabrizio

    Hi,
    I didn’t find this on other threads.

    I simply need to customize the color for bold in the Normal Text style.
    No Titles, No Headings.

    I would like to achieve this situation:

    Font color for Normal Text –> Black
    Font color for links –> Green
    Font color for bold text –> another one 🙂

    Both first settings are easily customizable in the General Appearance Menu, Typography, Colors, Body.
    But here I can only see:

    Background color
    Text color
    Link color
    Hover color on links

    But nothing for Bold font.
    I presume this is a simple custom CSS adding, but I wonder why this is not implemented in the options (other themes do this!).
    Can you please help and tell the right CSS to add in the customizer?

    Now, in my Customizer I have this

    /* GeneratePress Site CSS */ .inside-article,
    .sidebar .widget,
    .comments-area {
    	border-right: 2px solid rgba(0, 0, 0, 0.07);
    	border-bottom: 2px solid rgba(0, 0, 0, 0.07);
    	box-shadow: 0 0 10px rgba(232, 234, 237, 0.5);
    }
    
    /* Featured widget */
    .sidebar .widget:first-child,
    .sidebar .widget:first-child .widget-title{
    	background-color: #646464;
    	color: #fffff;
    }
    
    .separate-containers .page-header {
    	background: transparent;
    	padding-top: 20px;
    	padding-bottom: 20px;
    }
    
    .page-header h1 {
    	font-size: 1.5em;
    }
    
    .button, .wp-block-button .wp-block-button__link {
    	padding: 15px 25px;
    }
    
    @media (max-width: 768px) {
    	.post-image img {
    		max-width: 100%;
    	}
    } /* End GeneratePress Site CSS */
    #1846210
    David
    Staff
    Customer Support

    Hi there,

    if its bold text in the post content then you can use this:

    strong {
        color: #f00;
    }
    #1846821
    Fabrizio

    Yes, it works fine.
    Thanks. Anyway I would like to let the case open, because eventually I need some other guideline and will update the subject.

    #1847379
    David
    Staff
    Customer Support

    Glad to be of help

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.