• I can’t get the size of my page title to change.

    I understand it is some sort of css code. I tried
    a couple of code changes but it did not work,

    Suggestions?

    Thanks!
    Don

Viewing 13 replies - 1 through 13 (of 13 total)
  • DO you have a link to your site?

    Thread Starter donberg

    (@donberg)

    This is the page I want to edit the title for:

    illimit.com/interview

    Thanks!
    Don

    Ok, if you have a custom CSS area, put this code in there. Alternatively, install this plugin (i recommend this option) and place the CSS code below into the main Custom CSS area and save:
    https://wordpress.org/plugins/simple-custom-css/

    .entry-title {
      font-size: 37px;
    }

    Obviously change the 37px to whatever size you want your title to be

    Thread Starter donberg

    (@donberg)

    What is the name of the plugin?

    I recently had a similar issue and was advised to add
    !important into the code.

    For example, I wanted to change the font color of the title and could not get a response. I added !important and it worked.

    .site-title a {
    text-decoration: none;
    color: #0033cc !important;
    }

    You need to edit this link: http://www.illimit.com/wp-content/themes/twentythirteen/style.css?ver=2013-07-18

    You can go here: go to WordPress Dashboard -> then go to http://www.illimit.com/wp-admin/theme-editor.php

    you can see style.css -> then find the font size of .entry-title

    Change your font size there:

    h1 {font-size: 40px;
    margin: 33px 0;}

    Thread Starter donberg

    (@donberg)

    For example, I wanted to change the font color of the title and could not get a response. I added !important and it worked.

    .site-title a {
    text-decoration: none;
    color: #0033cc !important;
    }

    Where do I go among my css codes to
    add this??

    Thanks!

    On my theme(BIRCH)which supports “add on mode” for CSS, I simply go to Appearance and then Edit CSS. Alternatively you can go into the full CSS of the template and add the code. Hope that helps!

    Install the plugin I suggested above…Then go to the settgings and paste the code in. It really is that simple…

    Thread Starter donberg

    (@donberg)

    Install the plugin I suggested above…Then go to the settgings and paste the code in. It really is that simple…

    What is it called: simple-custom-css?

    Thread Starter donberg

    (@donberg)

    Hi Innuvo,

    Installed the plug in. How do I edit the page title
    fonts?

    Thanks!
    Don

    Thread Starter donberg

    (@donberg)

    Hi Innuvo,

    Where do I paste the code in my css files?

    Thanks!
    Don

    Hey, sorry for late reply as I have been away.

    When you install the plugin, then hover over appearance and click on custom css.

    In the grey box, paste this code

    .entry-title {
      font-size: 37px;
    }

    Save and preview on the site, refresh the page. Then change that value to whatever you want the size to be, depending on if you think its too big or too small.

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

The topic ‘changing font size forpage title’ is closed to new replies.