PDA

View Full Version : Just FEEDS at bottom of page


pjspics
Sep-09-2009, 02:34 PM
Hi,

I have spent the last hour or so looking for a Thread that could show me how to just have the FEEDS icon at the foot of my site.
I can find plenty of info on how to remove the FEEDS or remove the "What are feeds" text etc. but nothing on just having the FEEDS icon on its own.

Is there a bit of code that will allow me to just have a single FEEDS icon with no "What are feeds" text showing.

If there is a Thread out there that I have missed that shows this, just point me in the right direction.

Any help appreciated

denisegoldberg
Sep-09-2009, 03:32 PM
You don't have the feeds because you have the #cobrand_footer set to display: none.

Try this - it gets you almost there. The only problem is that it still shows a vertical bar after the feeds icon. I was able to get rid of that bar on my site, but I haven't found the magic on yours yet.

#cobrand_footer {
display: block !important;
}
#footer,
#feedHelp .nav {
display: none !important;
}
img .feedStandard {
display: block !important;
}
--- Denise

pjspics
Sep-09-2009, 11:43 PM
You don't have the feeds because you have the #cobrand_footer set to display: none.

Try this - it gets you almost there. The only problem is that it still shows a vertical bar after the feeds icon. I was able to get rid of that bar on my site, but I haven't found the magic on yours yet.

#cobrand_footer {
display: block !important;
}
#footer,
#feedHelp .nav {
display: none !important;
}
img .feedStandard {
display: block !important;
}
--- Denise


Thanks Denis - thats the one...
I see what you mean about the one line still there - I will have a hunt around to see if I can get a fix.
I'm sure I came accross this when I was trawling the Threads yesterday.

Looking at it now in the Footer, I thought it would look better to the right of my Statcounter on the same line - is there a way of positioning it there?

If not, it seems a long way past my Statcounter and is it possible to reduce the space between the couter and the Feeds icon.

Thanks again, much appreciated.

pjspics
Sep-10-2009, 12:36 AM
Thanks Denis - thats the one...
I see what you mean about the one line still there - I will have a hunt around to see if I can get a fix.
I'm sure I came accross this when I was trawling the Threads yesterday.

Looking at it now in the Footer, I thought it would look better to the right of my Statcounter on the same line - is there a way of positioning it there?

If not, it seems a long way past my Statcounter and is it possible to reduce the space between the couter and the Feeds icon.

Thanks again, much appreciated.

UPDATE:

Found this from Allen on positioning the FEED icon

#feeds {
position: relative;
left: 250px;
top: -85px;
}

#allFeeds {
position :relative;
left: 200px;
}

Means you can put it where ever you want with a little tweaking of the numbers