Viewing 5 replies - 1 through 5 (of 5 total)
  • Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    Yes, you can easily make the title to bold, you just all have to add <b> & </b> tag before and after the title.

    For eg: <b>Title of the page</b>

    To change the font size and color of the text, Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    For page title, code is below

    .content-info.home h2 {
        font-size: 40px !important;
        color: blue !important;
    }

    For the blog title, code is below

    .content-wrapper h3 {
        font-size: 30px !important;
    }

    Hope it will resolve your issue

    Thanks!

    Thread Starter ionwordpress

    (@ionwordpress)

    Hi,

    My version is Pro version 3.5.1

    if I used <b>Page Title</b>, then my Sitemap will show “<b>….</b>” too which is not quite nice.

    Can we use custom CSS code to :-

    1) bold the Page Title ?
    2) bold the Post Title ?

    Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS)of your dashboard.

    .content-info h2 {
        font-size: 34px;
    }
    .feature_blog_content h2 {
        font-size: 35px;
    }

    Note: Change numeric value as per your requirement.

    Hope it will resolve your issue

    Thanks!

    Thread Starter ionwordpress

    (@ionwordpress)

    Hi,

    You may have mis-read my post. Actually i would like to Bold the Page Title with custom CSS code.

    Theme Author inkthemescom

    (@inkthemescom)

    Hello,

    Sorry for misunderstading..

    It seems that you are interested to Bold the Page Title with custom CSS code.

    So for that, please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    .content-info h2 {
        font-weight: bold;
    }

    Hope it will resolve your issue

    Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Bold the "Page Title"’ is closed to new replies.