• Hello, I’m trying to set the content box title format a little smaller, the code shows the title of each box inside a <h2> tag, I’d like to change it in something than <h3> or <h4> but I can’t find the proper file php that sets the entire object, can anybody kindly help me please? Thanks a lot. L

Viewing 6 replies - 1 through 6 (of 6 total)
  • It is better to do that using css instead of changing the tags. You can apply the following css to change the font size.

    .content-boxes h2
    {
      font-size:20px;
    }
    Thread Starter laurarivas73

    (@laurarivas73)

    Thank you very much harmonyinfotech, your help was sooo useful! L.

    my site is livingwaterunnity.org. I am trying to change the font-family of the content boxes to belleza, 36 pt maybe. I attempted the above solution harmony but I could not make anything change on the content box titles.

    Thanks in advance for your help….

    David

    duplicated to indicate email contact on response:
    my site is livingwaterunnity.org. I am trying to change the font-family of the content boxes to belleza, 36 pt maybe. I attempted the above solution harmony but I could not make anything change on the content box titles.

    Thanks in advance for your help….

    David

    Hi there,

    Thanks for writing in, you can achieve that by adding this code under Appearance > Theme Options > Custom CSS:

    .home-content-boxes {
      font-family: 'Belleza', sans-serif;
    }
    
    .home-content-boxes h2 {
      font-size: 36px;
    }

    Hope this helps!

    Thanks.

    thank you emranemranx! now the Last (?) question — how do I make those titles link to a page? I have “read more” buttons properly linked but I’d also like the titles to be clickable and point to the same location, each title to a different page, of course. http://livingwaterunity.org

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘content boxes titles’ is closed to new replies.