Here is a neat little trick so you don't have to reupload your LOGO of FAVICON after doing an upgrade. The problem is that the images are stored in the ataualpa/images folder and that gets wiped out during an upgrade and your images are removed. So what do you do?
1) Create a new folder in your wp-contents folder called 'ata-images' and put your logo and favicon there.
2) go to ato->Style & edit HEADER AREA->Show Logo Image? and enter:
HTML Code:
../../../ata-images/your-logo.gif
HTML Code:
../../../../ata-images/your-favicon.ico
How does it work?
The logo image is normally in the wp-content/atahualpa/images folder so the path to the image would be:
HTML Code:
mydomain.com/wp-content/themes/atahualpa/images/mylogo.jpg
HTML Code:
mydomain.com/wp-content/themes/atahualpa/images/../mylogo.jpg
HTML Code:
mydomain.com/wp-content/themes/atahualpa/mylogo.jpg
HTML Code:
mydomain.com/wp-content/themes/atahualpa/images/../../mylogo.jpg
HTML Code:
mydomain.com/wp-content/themes/mylogo.jpg
HTML Code:
mydomain.com/wp-content/themes/atahualpa/images/../../../ata-images/mylogo.jpg
HTML Code:
mydomain.com/wp-content/ata-images/mylogo.jpg