|
#1

Jul 12, 2011, 11:04 AM
|
|
How do i add a simple RSS icon so people can subscribe to it?
Thanks for the help
|
#2

Jul 12, 2011, 11:10 AM
|
 |
|
|
10,176 posts · Jul 2009
Central New York State USA
|
|
Look in the RSS Setting section of Atahualpa.
__________________
~Larry ( CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
|
#3

Jul 12, 2011, 12:58 PM
|
|
It seems to me that the settings are ok and the icons should show
But if you go to http://www.revitit.com i cant see the icon 
Thanks for your help
|
#4

Jul 12, 2011, 01:08 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
the post feed icon will only show in the header area if you have the %logo option added to the Configure Header option.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#5

Jul 12, 2011, 08:15 PM
|
|
I thought it was on but maybe im missing something?
|
#6

Jul 12, 2011, 09:47 PM
|
 |
|
|
10,176 posts · Jul 2009
Central New York State USA
|
|
I would play around with different configuration in the Configure Header Area box. For instance don't use the adsense div and use the default setting instead. It will give you a larger rotating banner but the RSS might show.
__________________
~Larry ( CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
|
#7

Jul 13, 2011, 03:50 AM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
looks like you are using 'absolute' positioning and they are being hidden behind other elements.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#8

Jul 15, 2011, 08:13 AM
|
|
Quote:
Originally Posted by juggledad
looks like you are using 'absolute' positioning and they are being hidden behind other elements.
|
Any way i can fix that then?
|
#9

Jul 15, 2011, 08:50 AM
|
 |
|
|
10,176 posts · Jul 2009
Central New York State USA
|
|
The code you showed in post #6 has absolute positioning.
__________________
~Larry ( CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
|
#10

Jul 15, 2011, 08:52 AM
|
|
Ok, found that. What re the other options i have?
|
#11

Jul 15, 2011, 09:08 AM
|
 |
|
|
10,176 posts · Jul 2009
Central New York State USA
|
|
As a test you could just put the following in the Configure Header Area box.
HTML Code:
%logo %pages %cats %image
This will put your logo at the top, then the page manu, then the category meny, then the banner image.
This will probably not be what you want but you should see the RSS icon.
The options you have are a matter of what you want to do. It's just using the proper CSS. If you look at the Export/Import setting section you will see some text about other styles that come with Atahualpa that you could import as a starting point for design. That is another direction you could take but be aware if you import a style it will overwrite any styling you have applied so you should export your current setting as a backup.
__________________
~Larry ( CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
|
#12

Jul 15, 2011, 09:20 AM
|
|
Ok, just tried it. It placed another series of images underneath the categories but still no RSS
|
#13

Jul 15, 2011, 02:24 PM
|
 |
|
|
10,176 posts · Jul 2009
Central New York State USA
|
|
You still have the all the "to remove ad altogether code" in that box.
__________________
~Larry ( CNY Web Designs)
This site should be a membership site since it so full of good stuff.
Please consider donating which gives you access to even more good stuff.
|
#14

Jul 15, 2011, 02:40 PM
|
|
So i now have that:
%logo %pages %cats
<!-- To remove the ad altogether, start removing here... -->
<div style="position:absolute;top:20px;right:20px;width :728px;height:90px;">
<!-- Put the ad code BELOW this (and remove the sample text if there is any) -->
%image
<!-- Put the ad code ABOVE this -->
</div>
<!-- End removing the ad here -->
Is what i should have this:
%logo %pages %cats % image
<div style="position:absolute;top:20px;right:20px;width :728px;height:90px;">
</div>
Thank you so much for your patience
|
#15

Jul 15, 2011, 03:21 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
what is the url? pictures are not really useful in seeing what you are doing.
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#16

Jul 15, 2011, 03:23 PM
|
|
|
#17

Jul 15, 2011, 03:56 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
The problem is that the RSS icon is hiding behind the menu because of the css Insert
HTML Code:
a.posts-icon {
position:absolute;
top:160px;
right:140px;
font-weight:normal;
color:#fff;
font-size:11px
}
If you change that to
HTML Code:
a.posts-icon {
position:absolute;
top:130px;
left:614px;
font-weight:normal;
color:#000;
font-size:11px
}
you will see it in the middle of the top margin. You will need to adjust the top and left to suit your needs
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#18

Jul 15, 2011, 04:13 PM
|
|
I'm assuming i need to edit an html file here right?
Can i access the file through the interface or i need to access it using FTP and reupload? If its the ftp option, what file am i looking for?
|
#19

Jul 15, 2011, 05:14 PM
|
 |
|
|
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
|
|
No need to edit a file go to ato->add HTML/cask setts->CSS inserts
__________________
"Tell me and I forget, teach me and I may remember, involve me and I learn." - Benjamin Franklin
Juggledad | Forum Moderator/Support
|
#20

Jul 15, 2011, 05:41 PM
|
|
And now i have that really cool bar at the top.....
That is just GREAT  ]
Thank you so much
|
|