Remove Text from Feature Heading and Content on Themia Pro

Discussion in 'Themia WordPress Theme' started by fennelly, Jul 7, 2014.

  1. fennelly

    fennelly New Member

    Joined:
    Jul 5, 2014
    Messages:
    3
    Likes Received:
    0
    Hi
    I have an image in the background and want to delete all text from the heading and content of the 3 feature buttons so I am left with just the 3 feature images which I plan to link to 3 pages. How do I delete this text. Thanks in advance
     
  2. Piyush

    Piyush Support Staff

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

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

    Code:
    .feature_content h2 {
    display: none;
    }
    .feature_content p {
    display: none;
    }
    .feature_content a.read_more{
    display: none;
    } 
    This will solve your issue.
     

Share This Page