To use the CSS statically, here is what you should do.
1) set the CSS for INTERNAL (ato->Configure CSS & JS->CSS: External file or inline?
2) view a page then view the source of the page
3) copy the page source to a text editor
4) delete everything from the begining or the file to the line begining with <style type="text/css">
If you have ato->Configure CSS & JS->CSS: Compress? set to 'NO' it will be followed by
HTML Code:
/* ------------------------------------------------------------------
---------- BASE LAYOUT ----------------------------------------------
------------------------------------------------------------------ */
If you have ato->Configure CSS & JS->CSS: Compress? set to 'YES' it will be followed by one long line of CSS searting with
HTML Code:
body{text-align:center;margin:0;padding:0;.....
5) delete everything from the end of the css to the end of the file
6) delete the text '<style type="text/css">' at the begining
7) delete the text '</style>' at the end
8) copy the remainder and paste it to the end of style.css
9) edit header.php and find lines 9-11 which should look like this
HTML Code:
<?php # if ( $bfa_ata['css_external'] == "External" ) { ?>
<link rel="stylesheet" href="http:<?php echo $bfa_ata['get_option_home']; ?>/?bfa_ata_file=css" type="text/css" media="all" />
<?php } ?>
replace these lines with
HTML Code:
<link rel="stylesheet" href="http:yourdomain.com/wordpress/wp-content/ataualpa/style.css" type="text/css" media="all" />
make sure the url is correct and save the file
That's it. NOTE: If you change any options in the theme, you will have to rebuilt the style.css for them to show up.