(2014-09-13, 00:22:53)charlsouma Wrote: When it would be useful to have different size head banners on pages. I'd like equal size banner's on all pages. Where can I change this in your template?
You need to change line 16 in template files (template.php, template-no-sidebar.php and template-sidebar-left.php)
Code:
<body id="<?php get_page_slug(); ?>" <?php if (return_page_slug()=='index') echo 'class="homepage"'; ?>>
If you want a big banner on all pages, change it to:
Code:
<body id="<?php get_page_slug(); ?>" class="homepage">
If you want a smaller banner on all pages, change it to:
Code:
<body id="<?php get_page_slug(); ?>">
(2014-09-13, 00:22:53)charlsouma Wrote: I would like to have two columns of Featured Content not three. Where in your template can I change this?
In featured.inc.php you see three divs with class="4u".
These are the columns, delete one of them. For the rest two divs set class="6u" (instead of 4).
(There are 12 units to distribute for columns in skel framework. The number in the class name represents relative column width in units.)