Home Forums WordPress Themes – Premium Circumference changing font colours..

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

    I am not sure if this has been discussed before as I can’t find a search function. 🙁

    I am being asked about changing font colours in the posts. I see that this template seems to not allow font size changes, etc, but am wondering if you can suggest something to help with this.

    #21020
    Shekhar Bhandari
    Participant

    Hi Kathy,
    To change the text colors you can use typography customize. Go to Customize->Typography and choose color for heading, text, links.
    and to increase the font size do you want to change the font size for post title or post content ?

    Thanks.

    #21032

    Thank you for your response, but I don’t think you understood my question. I do not want to change colours/sizes for the whole site, but want to be able to change the font colour/size in a particular post.

    thanks

    #15875
    Shekhar Bhandari
    Participant

    Hi Kathy,
    If you want to change the color/font of the particular post then you should use Custom css. Firstly you need to get your post id and apply css the header and content.
    For example your id is 42 then to change the color and font-size of title your css should be

    article#post-47 h1.entry-title a {
    color:#f00; 
    font-size:14px;
    }

    and to change the color and font-size of the content your css should be

    article#post-57 .entry-content p {
    color:#f00;
    font-size:14px;
    }

    and to find the post-id you should inspect the post element. Screeshot is attached to you to show how to find the post id.

    Thanks.
    Untitled-1.jpg

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