Remove color behind page navigation

Discussion in 'Dzonia WordPress Theme' started by wtrujillo, Jul 23, 2013.

  1. wtrujillo

    wtrujillo Guest

    Joined:
    Jun 26, 2013
    Messages:
    26
    Likes Received:
    1
    I would like to remove the oval boxes around the page navigation completely or change the color to white to have it not show.
     
  2. Piyush

    Piyush Support Staff

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

    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .pagination li a {
    background-image: none;
    }
    This will solve your issue.
     
  3. wtrujillo

    wtrujillo Guest

    Joined:
    Jun 26, 2013
    Messages:
    26
    Likes Received:
    1
    Thanks Piyush. But I'm trying to remove the boxes around the page navigation. And just make it a white background. See attached image. Shadow Creek Homes | Colorado Custom Homes.jpg
     
  4. 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 .ddsmoothmenu li.current-menu-item, #menu .ddsmoothmenu li.current_page_item, #menu .ddsmoothmenu li.current-menu-parent, #menu .ddsmoothmenu li.current_page_parent, #menu .ddsmoothmenu li:hover{
    background:none!important;
    -moz-box-shadow:none;
    -webkit-box-shadow: none;
    }
    #menu li.current-menu-item a, #menu .ddsmoothmenu li.current_page_item a, #menu li.current-menu-parent a, #menu li.current_page_parent a, #menu li a.selected, #menu li a:hover{
    color:blue;
    }
    This will solve your issue.
     

Share This Page