How to change a font size and font type of the footer?

Discussion in 'Dzonia WordPress Theme' started by greatpropertycare, Nov 2, 2012.

  1. greatpropertycare

    greatpropertycare Guest

    Joined:
    Oct 19, 2012
    Messages:
    14
    Likes Received:
    0
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to Js > Custom.js present in your theme directory and remove the code given below

    Code:
     //Cufon Replacement in heading
      jQuery(document).ready(function() {
    //Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6');
    Cufon.replace('h1, h2, h3, h4, h5, h6,.content .post .date li', { fontFamily: 'MankSans-Medium', hover: true });
    });
    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer_wrapper .footer .widget_inner h4{
    font-size:18px;
    font-family:symbol;
    }
    .footer_wrapper .footer .widget_inner a{
    font-size:18px;
    font-family:symbol;
    }
     
    .footer_wrapper .footer .widget_inner{
    font-size:18px;
    font-family:symbol;
    }
    Adjust font size as per your requirement.
    Inplace of "symbol" put your font type.
     
  3. greatpropertycare

    greatpropertycare Guest

    Joined:
    Oct 19, 2012
    Messages:
    14
    Likes Received:
    0
    Hi,

    Where is this " Js > Custom.js present in your theme directory" located I could not find it?
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Custom.js is in a subfolder called js.
    easiest way to edit custom.js is to edit the files locally on your pc, open the theme folder, the js folder, then open the custom.js file, edit it in wordpad and then re-upload it via ftp to the correct folder.
     

Share This Page