How to change widget title parameters

Discussion in 'Figero WordPress Theme' started by sworldconsult, Feb 24, 2013.

Thread Status:
Not open for further replies.
  1. sworldconsult

    sworldconsult Member

    Joined:
    Dec 28, 2012
    Messages:
    33
    Likes Received:
    0
    Hello,
    How can I change the following widget title parameters:
    1- Widget title font type
    2- Widget title font size
    3- Widget title font colour
    Thanks
     
  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.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
    Now,


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

    Code:
    .footer h5{
    color:red;
    font-size:20px;
    font-family:your font type;
    }
     
  3. sworldconsult

    sworldconsult Member

    Joined:
    Dec 28, 2012
    Messages:
    33
    Likes Received:
    0
    Hi,
    I followed the instructions but it did not work as expected. To clarify I would like to change the format of the Title of widgets in the sidebar on the right hand side. This is for widgets on the right only.
    The above code only modified widget title in footer which I do not want as the current title for widgets in footer is fine as it is and does not need changing.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Go to Js > custom.js present in your theme directory and remove the code given below
    Code:
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');
    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .sidebar h3 {
    color: red;
    font-size: 25px;
    font-family: your font type ;
    }
    Adjust the values as per requirement.
    this will solve your issue.
     
  5. sworldconsult

    sworldconsult Member

    Joined:
    Dec 28, 2012
    Messages:
    33
    Likes Received:
    0
    It worked fine.
    Thank you.
     
Thread Status:
Not open for further replies.

Share This Page