Changing colors, header, footer questions

Discussion in 'Infoway WordPress Theme' started by cvin, Jul 2, 2014.

  1. cvin

    cvin New Member

    Joined:
    Aug 30, 2013
    Messages:
    14
    Likes Received:
    0
    1. How can I change the colors for the following:
    - header
    - navigation
    - click here button in header
    - buttons in homepage widgets
    - quotation mark at bottom for testimonials
    - link colors
    - widget headers on secondary pages (that little line above each widget)
    2. Is it possible to add a social media icon for yelp in the top bar?
    3. How can we stretch the words across the footer?
     
  2. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    1) Header

    header {
    background-color: #fff;
    }

    Navigation

    Code:
     #menu li:hover a, #menu li.current_page_item a {
    background-color: YOUR COLOR VALUE;
    }
    Code:
    .topinfobar .siteinfourl p {
    background-color: YOUR COLOR VALUE;
    }
    Button for sidebar widget

    Code:
    .signupForm .signinForm input[type="submit"] {
    background: YOUR COLOR VALUE;
    }
    Quote image.

    It's an image. If you are using theme default orange color then go to the infowaytheme\images and edit that image.
    And if you are using other colors then go to the
    infowaytheme\color\images
    and edit image.

    Link color.

    Code:
    a{color; YOUR COLOR VALUE;}
    Widget header color.

    Code:
    .sidebar h3 a {
    color: YOUR COLOR VALUE;
    }
    .footer .footer_widget h4 {
    background: url(images/footerheadsep-pink.png) bottom repeat-x;
    color: YOUR COLOR VALUE;
    }

    Social icon.

    You can replace any one from existing icons with the yelp icon. For it go to the infowaytheme\images and replace non useful icon.

    Footer text.
    Code:
    .footer p{
    font-family:18px;
    }

    Thanks & Regards
    Nitesh Raghuwanshi
     
  3. cvin

    cvin New Member

    Joined:
    Aug 30, 2013
    Messages:
    14
    Likes Received:
    0
    1. How do I update the color of the "Click Here" button in the header?
    3. I'm a little unclear on what to do in order to make the words in the footer stretch across the bottom. Can you please elaborate?

    Thanks!
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    1) Please share screenshot of the "click here" button.
    2) To stretch footer text open footer.php file and make changes as shown in the image attached.

    edit-footer.png

    Thanks & Regards
    Nitesh Raghuwanshi
     

Share This Page