Custom CSS to change menu color and remove footer area?

Discussion in 'Infoway WordPress Theme' started by chrisr, Feb 27, 2014.

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

    chrisr Member

    Joined:
    Mar 27, 2012
    Messages:
    38
    Likes Received:
    0
    Please someone help - what CSS to add to effect the below?

    You will see when on the homepage of the site http://www.testingenviroment.com/cityhockey/ I have added CSS so the menu colour is dark blue however all other menu when highlighted or on those menu items hovered on are light blue how do I make these also dark blue what is the CSS to add to do this?

    Also in the footer area I want to keep the dark blue strip but above that is a light blue strip what CSS can I add to remove the light blue strip completely?
     
  2. Piyush

    Piyush Support Staff

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

    1. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu li a:hover {
    background: blue;
    }
    #menu .ddsmoothmenu li li a:hover {
    background: none;
    }
    #menu li:hover a, #menu li.current_page_item a {
    background: blue;
    } 
    In place of "blue" you can put your color or color code.

    2. Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard to remove the footer widget area.

    Code:
    .footer .footer_widget {
    display: none;
    }
     
    This will solve your issue.
     
  3. Carroll

    Carroll New Member

    Joined:
    Dec 28, 2011
    Messages:
    22
    Likes Received:
    1
    Hello,

    I used the first code above to change the menu color in Themia. It creates a rectangle overlay over the original rounded color button, with the underlying color showing on one edge. Here's the URL> http://sma-assistants.com/pricing/

    And a screenshot is below. I want to preserve the rounded corners and have no underlying color showing.

    Thanks for your help,
    Carroll

    . Screen shot 2014-03-02 at 3.52.46 PM.png
     
  4. Carroll

    Carroll New Member

    Joined:
    Dec 28, 2011
    Messages:
    22
    Likes Received:
    1
    _______________________________
    UPDATE:


    After removing and replacing the code, the color doesn't change at all?

    Here is the code I'm using with the hex# added:

    #menu .ddsmoothmenu li a:hover {
    background: #0E23CC;
    }
    #menu .ddsmoothmenu li li a:hover {
    background: none;
    }
    #menu li:hover a, #menu li.current_page_item a {
    background: #0E23CC;
    }
    Don't know what I'm doing wrong.
    Thanks again.
     
  5. Gourav

    Gourav Support Staff

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

    Hello,

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

    Code:
     
     
    #menu li.current-menu-item, #menu li.current-menu-parent, #menu li.current_page_parent, #menu li:hover, #menu li.current_page_item, #menu li.current-menu-item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li:hover a, #menu li a.selected, #menu li a:hover, #menu li.current_page_item a{
    background:#0E23CC;
    border-radius:16px;
    }
    This will solve your issue.


    Thanks & Regards
    Gourav Shrivastava
     
  6. Carroll

    Carroll New Member

    Joined:
    Dec 28, 2011
    Messages:
    22
    Likes Received:
    1
    Thanks so much! You sure know your stuff! Great support!
     
    Piyush likes this.
Thread Status:
Not open for further replies.

Share This Page