Shape 5

Joomla Templates => New Vision - Club => : James Crawford January 10, 2013, 07:27:43 AM



: Change Font for Slider Title
: James Crawford January 10, 2013, 07:27:43 AM
When you edit the slider module title ie 'Title 1' 'Title 2' etc, is there a way to change this font when displayed on the front end?

The font it displays the titles in on the slider doesn't really fit in with my site and I'd love to change it!

thanks in advance


: Re: Change Font for Slider Title
: mikenicoll January 10, 2013, 10:27:30 PM
Hello,

From what your wrote I assume you are talking about the S5 Image and Content Fader text. You can add the following lines of code to the CSS files with whatever font family you want. Example is below:

Template.CSS - Line 694

.slideInfoZone h2 {
    color: #FFFFFF;
    font-size: 3.8em;
    font-weight: bold;
    line-height: 100% !important;
    margin-bottom: 10px;
    text-shadow: 1px 2px #000000;
    font-family: comic sans ms;
}

Template.CSS - Line 703

.slideInfoZone p {
    color: #FFFFFF;
    font-size: 1.3em !important;
    font-weight: normal !important;
    line-height: 140% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    width: 80%;
    font-family: comic sans ms;
}

-Mike