On my sidebar I have several feeds
The 3 titles are clickable links (my @twitter handle, iTunes Top 10, Apple Hot News)
I’d like to make the title links un-clickable (my @twitter handle and iTunes Top 10) without affecting the functionality of the feed. These links actually just take you to a page that provides the user with no relevant info.
What is the best way to do this? The Twitter feed was especially tricky to get working so I wanted to ask before I proceeded with CSS or the like. I was also thinking there might be a way to solve this problem from the Widget settings panel??
Thank you, Jas
Hi!
I hope all is well with you today.
Please add this on Quick CSS or custom.css:
#rss-4 a.rsswidget, #rss-3 a.rsswidget {
pointer-events: none;
}
Regards,
Ismael
Hi Ismael,
I tried that but it resulted in this:
twitter – clickable
iTunes Top 10 – not clickable
Apple Hot News – not clickable
What I want is this:
twitter – not clickable
iTunes Top 10 – not clickable
Apple Hot News – clickable
I’ve tried different variations of the code but it doesn’t work. Any ideas?
Thank you. Hope all is well with you! Jas
I figured it out. Thanks!
#rss-4 a.rsswidget, #rss-2 a.rsswidget {
pointer-events: none;
}