Changes to front page

Discussion in 'Local Business WordPress Theme' started by bwdaugherty, Dec 26, 2014.

  1. bwdaugherty

    bwdaugherty Member

    Joined:
    Nov 26, 2012
    Messages:
    118
    Likes Received:
    0
    1.) remove main menu seperators
    2.) remove blue behind text on menu and signup area title (ie next to slider)
    3.) change color of phone number on desktop version from white to #FADD9B
    4.) Change gradient of header background from black to gray
    5.) change color of menu titles from white to #FADD9B

    currently using these custom CSS codes:

    .header {
    background: #000;
    }

    .menu_bar{
    background:#000;
    border-top: 5px solid #000;
    border-bottom: 5px solid #000;
    }
    #menu .ddsmoothmenu li a {
    background: black!important;
    }

    .signup{
    background:black;
    }

    .feature_content {
    display: none;
    }
     

    Attached Files:

    • fff.png
      fff.png
      File size:
      223.6 KB
      Views:
      7
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu li
    {
    background:none;
    }
    .call-us p{
    color:#FADD9B;
    }
    .menu_bar
    {
    background:none;
    }
    #menu .ddsmoothmenu li a,#menu .ddsmoothmenu li a:hover {
    color: #FADD9B;
    }
    .signup
    {
    background:none;
    }
    .header {
        height: 200px;
        background: -webkit-linear-gradient(#bbb, grey); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(#bbb, grey); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#bbb, grey); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#bbb, grey); /* Standard syntax (must be last) */
    }
    Thanks & Regards
    Pramod
     

Share This Page