Bottom main page tagline feature

Discussion in 'RoadFighter WordPress Theme' started by outsidebcn, Jul 5, 2013.

  1. outsidebcn

    outsidebcn New Member

    Joined:
    Jul 2, 2013
    Messages:
    12
    Likes Received:
    0
    How could I change button size and color for the Home Page Bottom Tagline Feature?

    And how about font and font size for same feature?

    Thanks
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    It is not possible to increase the size and color of Home Page Button of this theme because it is an image and implemented on the grid system.
    But you can reduce its size, if you want to do this then paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .bottom_tagline .bottom_tagline_button a {
    width: 100%;
    background-size: 278px 118px;
    border-radius: 5px;
    }
    and you can reduce the size by decreasing these value and adjusting the values.

    For the font and font size issue,
    Paste this code in Custom CSS
    Code:
    .bottom_tagline .bottom_tagline_button a {
    font-size: 20px;
    font-family: symbol;
    }
    You can adjust the value of font-size as per your requirement and you can put your font instead of "symbol" .
     
  3. outsidebcn

    outsidebcn New Member

    Joined:
    Jul 2, 2013
    Messages:
    12
    Likes Received:
    0
    Thanks a lot. It works

    And how to vertically center text on button?

    Can button color be changed?
     
  4. Piyush

    Piyush Support Staff

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

    1. For the text align issue, paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .bottom_tagline .bottom_tagline_button a {
    text-align: center;
    }
    This will solve your issue.

    2. For the button color issue,
    Go to the image directory present in your theme directory and edit the "buttons-tag.png" as per your requirement.

    Follow the link given below for reference.
    http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/

    This will solve your issue.
     

Share This Page