Redesign Help

Discussion in 'RoadFighter WordPress Theme' started by tampasportsauthority, Oct 7, 2013.

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

    tampasportsauthority New Member

    Joined:
    Aug 12, 2013
    Messages:
    5
    Likes Received:
    0
    Having trouble with a few things..

    1.I need to get the menu bar above the image rather than over lay, what is the best way to do that?

    2.I do not want to insert a custom log at the top for the logo will be embedded in the slider images

    3. The font on the hone page to the punch line etc.. how do I change that to bank gothic?

    Thank you so much for your help!
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .menu-wrapper {
    margin-top: 0px;
    position: absolute;
    top: 0px;
    width: 1084px;
    }
    .header_wrapper .logo {
    margin-top: 35px;
    }
    .header_wrapper .call-us {
    margin-top: 35px;
    }
    
    You can adjust these value as per your requirement.


    2. Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .header_wrapper .logo img {
    display: none;
    }
    This will remove your logo image.


    3. Go to js > custom.js present in your theme directory and remove the code given below


    Code:
    //Cufon replacement
    Cufon.replace('h1')('h1:hover')('h2')('h3')('h4')('h5')('h6');

    Now,

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

    Code:
    h1,h2,h3,h4,h5,h6,a{
    font-family:symbol!important;
    }
    p{
    font-family:symbol!important;
    }
    
    In place of "symbol" put your font type.
     
  3. tampasportsauthority

    tampasportsauthority New Member

    Joined:
    Aug 12, 2013
    Messages:
    5
    Likes Received:
    0
    Thank you so much!!!
     
Thread Status:
Not open for further replies.

Share This Page