Moving the RSS button
Is there code to move the location of the RSS button on the events calendar?
-
VCOMA commented
Well, we have the automatic headers hidden on function pages (like the events calendar) because the formatting was so weird, so it hides the RSS button too. Want to move it out of the header so it's seen again.
-
Kerrie-Anne commented
apologies,I misread your post and thought you meant to remove it, not move it.
Essentially you need need to identify the class and/or id and change the css to reposition the icon. Looking back at the code on my site, the rss logo icon is actually nested within a href tag, which in turn is nested within a h1 tag, so it could get a little messy.
Here's the kind of thing you're looking for
<h1 class="pageTitle">
Events Calendar
<a href="/Content/RSS/events.ashx?pageId=863340" id="ctl03_FunctionalBlock1_ctl00_eventPageViewBase_ctl00_PageHeader_rssLink" target="_top" class="rssFeedLabel">
<img id="ctl03_FunctionalBlock1_ctl00_eventPageViewBase_ctl00_PageHeader_rssLogo" title="RSS feed" src="http://f.wildapricot.org/ThemeSharedRes/images/rss.png " alt="RSS feed">
</a>
</h1>
Where exactly are you wanting to move it to??
-
VCOMA commented
This doesn't seem to do anything...
-
Kerrie-Anne commented
Try adding this to your custom css:
#ctl03_FunctionalBlock1_ctl00_eventPageViewBase_ctl00_PageHeader_rssLink {
display: none;
}