Header customization and button image

Discussion in 'GeoCraft WordPress Theme' started by justjules, Oct 24, 2013.

  1. justjules

    justjules New Member

    Joined:
    Dec 8, 2012
    Messages:
    1
    Likes Received:
    0
    Hello all!
    Wondering if there is a way that I can customize the header area of geocraft, I am not a coder. I would also like to change the image button. Can you take one look for me at www.gimegamarketing.com? I am uploading a screenshot of what it looks like now. I am having a custom logo made. I adjusted the size of the logo on the site now, it is a bit big, I would like to make it a bit smaller but not very much. Any help you can give me is appreciated.
    Thank you,
    Julie
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

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

    1.For your first issue

    Paste this code in Custom CSS
    Geocraft Settings > Theme Option > Styling Option > Custom CSS

    Code:
    .header_wrapper .logo_wrapper .logo img {
    width: 72%;
    }
    Adjust its value as per your requirements.

    2.For your second issue

    Paste this code in Custom CSS
    Geocraft Settings > Theme Option > Styling Option > Custom CSS

    Code:
    .header_wrapper .header .post_btn .btn_center{
    background:red;
    border-radius:4px;
    }
    .header_wrapper .header .post_btn .btn_left{
    display:none;
    }
    .header_wrapper .header .post_btn .btn_right{
    display:none;
    }
    .header_wrapper .header .post_btn .btn_center:hover{
    background:red;
    border-radius:4px;
    opacity:.9;
    }
     

Share This Page