Problem with editing CSS

Home Forums Jevelin Theme Problem with editing CSS

Home Forums Jevelin Theme Problem with editing CSS

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    RESOLVED Posts
  • katarzyna89
    Participant

    Hello
    The options in theme settings: Styling – Heading do not work. I can not change the size of fonts there, so I need to do this by CSS.

    I would like to edit H2 font size, I am trying to put some code, but it doesn’t work:
    .post-item-single h2 {
    font-size: 23px;
    }

    Second problem is with tag cloud. I would like to change colour of tag clouds:

    .widget_product_tag_cloud a, .widget_tag_cloud a {
    background-color: #3a3a3a;
    border: 1px solid #fff;
    }

    When I’m trying this code using firebug everything is fine, but when I paste the code into Custom Code theme section it doesn’t work.
    Could you help me?
    Regards

    Solution for this topic

    HI @katarzyna89,

     

    I hope you are well today and thank you for your question.

     

    Please try making it specific as displayed below.

     

    #page-container .post-item-single h2 {
    font-size: 23px !important;
    }
    #page-container .widget_product_tag_cloud a, .widget_tag_cloud a {
    background-color: #3a3a3a !important;
    border: 1px solid #fff !important;
    }

     

    If it still doesn’t work then could you please share me the page URL from your site where it is displaying so that I can help you?

     

    Best regards,
    Shufflehound team

    katarzyna89
    Participant

    Thank you, now everything works good:)

    You are most welcome here 🙂

Viewing 4 posts - 1 through 4 (of 4 total)