1) Probably best to create a page template for this, then go editing the pages where you want to use this page template, an option "templates" will be there (which wasn't there when you had no page templates). Choose "Six Cells" there.
To create a page template, make a copy of index.php as i.e. "six-cells.php".
At the very top of six-cells.php, put this:
PHP Code:
<?php
/*
Template Name: Six Cells
*/
?>
Edit six-cells.php and put a table with 6 cells wherever you want it, i.e.
right after <?php get_header(); ?> to have it on the top of the middle columns
or right before <?php get_footer(); ?> to have it at the bottom of the middle column.
HTML Code:
<table class="six-cells" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="cell1"> CELL 1 </td>
<td class="cell2"> CELL 2 </td>
<td class="cell3"> CELL 3 </td>
<td class="cell4"> CELL 4 </td>
<td class="cell5"> CELL 5 </td>
<td class="cell6"> CELL 6 </td>
</tr>
</table>
At HTML/CSS Inserts -> CSS Inserts add, i.e.
HTML Code:
table.six-cells {
width: 100%;
...other styles
}
table.six-cells td {
padding-right: 10px;
}
td.cell6 {
padding-right: 0;
}
Create a template for the 2 cells too: file name "two-cells.php", Template name "Two Cells".
HTML Code:
<table class="two-cells" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="cell1"> CELL 1 </td>
<td class="cell2"> CELL 2 </td>
</tr>
</table>
CSS Insert
HTML Code:
table.two-cells {
width: 100%;
...other styles
}
table.two-cells td.cell1 {
padding-right: 10px;
}
Upload both page templates to the theme's main directory i.e. /wp-content/themes/atahualpa332/
Wordpress will automatically recognize these page templates and they will be available when you edit or create a page. See attached image
3.) See Theme Options -> Header -> Configure Header Area
4.) Theme Options -> Sidebars -> Uncheck all checkboxes at
LEFT sidebar: Display on: / RIGHT sidebar: Display on:
2.) You will have to edit bfa_header_config.php for this, and repeat this change with each theme update. It would be cleaner to turn off header parts you don't want at Theme Options -> Header -> Configure Header Area, and then add your new content in header.php
PHP Code:
<!-- Header -->
<td id="header" colspan="<?php echo $cols; ?>">
Your content HERE -->
<?php bfa_header_config($bfa_ata['configure_header']); ?>
Or, your content HERE -->
</td>
<!-- / Header -->
I will add 1, 2, 3, 4, 5 cell widget areas in the next theme versions. The way the header is now is not flexible enough however editing bfa_header_config seems very wasteful to me since you have to re-do this and I'll change the header area anyway.