Getting rid of the drop shadow on text

Discussion in 'Elite Pro WordPress Theme' started by sandrawalter, Dec 26, 2013.

  1. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    Hi there,

    The text in the areas with a white background (most of this theme) has a drop shadow effect,. some people have complained that it makes the text look blurry, and hard to read. I agree. Is there a way to eliminate the drop shadow or change the font altogether to get rid of the blurry effect?

    my site: http://www.sandrawalter.com - I attached a screen shot for your reference.

    Thanks!



     

    Attached Files:

  2. 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 a {
    text-shadow: none;
    }
     
  3. sandrawalter

    sandrawalter New Member

    Joined:
    Dec 14, 2012
    Messages:
    19
    Likes Received:
    0
    Thank you. Is there a way to eliminate it from the menu bar when a page title is chosen? ( the drop shadow still shows up on the menu item when moused over/selected)?
     
  4. Piyush

    Piyush Support Staff

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

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

    Code:
    #menu li.current-menu-item a, #menu 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 {
    text-shadow: none;
    } 
    This will solve your issue.
     

Share This Page