Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #2514021
Tag formatting
Closed

Comments

  •  1
    5against4 started the conversation

    How to change the formatting of tags? i.e. Capital letters/Not capitals, background colour, hover colour, text colour, hover text colour etc.?

    i thought it might be the "Custom Color for H1 Tag Inside Post Content" and so on, but that doesn't seem to change anything.

  •  2,699
    PenciDesign replied

    Hi,

    You can add more this code to Customize > Custom CSS to do that:

    .container-single .post-entry .post-tags a{
        text-transform: capitalize;
        font-size: 12px !important;
        border-color: #ff0000;
        background: #fffb80;
        color: #000000;
    }
    .container-single .post-entry .post-tags a:hover{
        border-color: #ff0000;
        background: #ff0000;
        color: #ffffff;
    }
    

    Change:

    - The text 'capitalize' to 'none' on the above code to change the text to 'not capitals'

    - Change value 12 to font size value as you want.

    - Change all color codes on border-color, background and color to change border color, background color and text color. You can get a color code here


    Best Regards,

    PenciDesign

  •  1
    5against4 replied

    Excellent - thanks a lot!