Footer and Menu

Discussion in 'Elite Pro WordPress Theme' started by bgdrew03, Mar 6, 2015.

  1. bgdrew03

    bgdrew03 Guest

    Joined:
    Feb 22, 2015
    Messages:
    19
    Likes Received:
    0
    1. I would like the menu bar to be a red gradient, light to dark, with the text becoming White

    2. I would like the footer background (just the 4 column area) to also be red with white text

    Do you have css code for this? Thank you in advance, you guys rock!
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi bgdrew03!

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

    1>
    Code:
    ul.ddsmoothmenu li {
    background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important;
    }
    ul.ddsmoothmenu li a {
    color: white !important;
    }
    2>
    Code:
    .footer-wrapper .footer-top {
    background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important;
    }
    .footer_widget p {
    color: white !important;
    }
    .footer_widget {
    color: white !important;
    }
    Thanks,
    Praveen
     
  3. bgdrew03

    bgdrew03 Guest

    Joined:
    Feb 22, 2015
    Messages:
    19
    Likes Received:
    0
    You are awesome. Is there a way to extend the menu bar gradient across the content area page? Thank you!
     

    Attached Files:

  4. bgdrew03

    bgdrew03 Guest

    Joined:
    Feb 22, 2015
    Messages:
    19
    Likes Received:
    0
    1 more thing, I need these circled parts of the footer to have white text also (image attached), thank you
     

    Attached Files:

  5. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi bgdrew03!

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

    1>
    Code:
    #menu .ddsmoothmenu {
    background: linear-gradient(to bottom right, rgb(243, 137, 137) , rgb(241, 13, 13)) !important;
    }
    2>
    Code:
    .footer-wrapper .footer h4 {
    color: white !important;
    }
    .footer-wrapper .footer a {
    color: white;
    }

    Thanks,
    Praveen
     

Share This Page