Styling the home page

Discussion in 'Local Business WordPress Theme' started by marilenis, Sep 28, 2013.

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

    marilenis New Member

    Joined:
    Sep 6, 2013
    Messages:
    11
    Likes Received:
    0
    Hello ;),

    I have a few questions about making changes to the css in the home page, I appreciate all your help. Your themes are wonderful!

    The questions are listed in the attached image, they are self explanatory.

    Thanks,
    Marilenis Styling_questions.png
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your 1st and 3rd issue

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

    Code:
    body {
    background: red!important;
    }
    .header{
    background: red;
    }
    Inplace of "red" put your color code.

    2. For your 2nd issue

    Go to css > color > images present in your theme directory and replace your image with present menu hover image or edit it.

    The name of image is "lockman-menuhoverbg.png"

    Note:- Use same name for your edited image and remove the current image.


    3.For your 4th issue

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

    Code:
    .signup{
    background:red;
    }
    4.For your 5th issue

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

    Code:
    .signupform textarea{
    color:red;
    }
    .signupform input[type="text"]{
    color:red;
    }
    5.For your 6th issue

    #for changing background color

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

    Code:
    .signupform input.btnsubmit{
    background:red;
    border-radius:11px;
    }
    .signupform input.btnsubmit:hover{
    background:red;
    border-radius:11px;
    }
    #for changing font type

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

    Code:
    .signupform input.btnsubmit:hover{
    font-family:symbol;
    }
    .signupform input.btnsubmit{
    font-family:symbol;
    }
    Inplace of "symbol" put your font type.

    #for changing text

    Go to functions > localbusiness-leads-form.php present in your theme directory and follow the instruction as shown in image given below

    2013-09-28_1514.png


    This will solve your issue.
     
  3. marilenis

    marilenis New Member

    Joined:
    Sep 6, 2013
    Messages:
    11
    Likes Received:
    0
    Thanks for your help, I was able to solve all these issues. I am posting a new help ticket with a few more related questions. Thanks a lot! ;)
     
Thread Status:
Not open for further replies.

Share This Page