Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #269515

    Hi,

    I am trying to alter the font size on the page titles to 24px.

    You can see the site here:

    I would like to change “The Science”

    I tried this bit of CSS I found on the forums. Cleared all of my cache etc..

    .title_container .main-title, {
    font-size: 24px;
    }

    But it does not seem to be working.

    Thanks in advance.

    Jordan

    #269519
    .title_container .main-title {
    font-size: 24px;
    }

    you had a comma after “.main-title” that breaks it

    #269520

    Thanks for the quick response. That was embarrassing all fixed.

    One more question:

    I am trying to get rid of the boxed border on the footer and side bar menu.

    I am using this bit of code but the border is still there.

    .widget_nav_menu ul:first-child>.current-menu-item, .footer_color .widget_nav_menu ul:first-child>.current_page_item, .footer_color .news-thumb {
    background: none !important;
    border: none !important;
    }

    Thanks!

    Jordan

    #269527
    .widget_nav_menu ul:first-child>.current-menu-item, .footer_color .widget_nav_menu ul:first-child>.current_page_item, .footer_color .news-thumb {
    background: none;
    border: none;
    box-shadow: none;
    }
    #269528

    Thanks Flikk!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Page Title Font Size’ is closed to new replies.