How to make titles on the main page non clickable?

Posted in: Newspaper
Post count: 92

Hello,

Can you please advise if it is possible to make the title of the articles displayed on the main page non clickable? Here is the web site — http://newsletter.freesmi.by/

Post count: 23312

Hello mc_kot,

Try the code below and place it in Theme panel->CUsotm CSS area.

The code is ->

.td_module_10{
pointer-events:none;
}

If is not what you mean, please provide more details so I will be able to provide a more accurate response.

Thanks.

Post count: 92

Super! Thx a lot! You are the best

Post count: 92

Actually that code removed all links (not only from title). For example on the main page I have:
– Title
– Text of the articles with links in it (below the title)

After I put the code, both title + links inside the article shown on the main page became not clickable. The idea is to make the title non clickable, but to keep the links in the article clickable. Is is possible?

Post count: 23312

Hello mc_kot,

You can try the code below and place it in Theme panel->Custom CSS area. Also, if you want that code to be applied only to this post page, you will have to add the post ID at the top of the code, like this -> http://screencast.com/t/AqiBkDz7

.td_module_10 .td-module-title a {
pointer-events:none!important;
}
div.td_module_10:hover .entry-title a{
color:black;
}

or

.postid-182 .td_module_10 .td-module-title a {
pointer-events:none!important;
}
div.td_module_10:hover .entry-title a{
color:black;
}

Thanks.

Post count: 92

Thanks a lot!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.