First Feature Heading Text is Being Hyperlinked?

Discussion in 'Infoway WordPress Theme' started by bizzyboy, Mar 6, 2014.

Thread Status:
Not open for further replies.
  1. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    On the Home page of my site I have entered some text in the 'First Featured Heading' and when I view my Home page I see the text is Hyperlinked with my website URL. How do I stop this text from being hyperlinked?

    Here is my site and the text being Hyperlinked:
    MavenDomains.com

    Text: 'Domains for Your Online Business or Investment'.

    Thanks
     
  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:
    .feturebox .featurebox_inner .featurebox_desc.first a {
    pointer-events: none;
    text-decoration: none;
    color: #444343;
    font-weight: bold;
    }
     
    This will solve your issue.
     
  3. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Thanks, but the code you gave me removes the Hyperlinks from the First Feature Heading AND any links I have in the First feature Description. As specified in my initial support request I only want the Hyperlink removed from the 'First Feature Heading'.
     
  4. Piyush

    Piyush Support Staff

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

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

    Code:
     .feturebox .featurebox_inner .featurebox_desc.first h2 a {
    pointer-events: none;
    text-decoration: none;
    color: #444343;
    font-weight: bold;
    }
    
    This will solve your issue.
     
  5. bizzyboy

    bizzyboy Member

    Joined:
    Apr 2, 2013
    Messages:
    87
    Likes Received:
    1
    Great, that works perfectly. Thanks.
     
Thread Status:
Not open for further replies.

Share This Page