Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Montezuma Theme »

Creating Home Page


  #1  
Old Jun 5, 2013, 05:07 PM
UmaSumeros
 
2 posts · Sep 2010
Hello:

Thank you for your work on this template. I am having some problems setting up the home page.

This is the layout I want:

1. Column 1: Sidebar Widget area on left side of the page (100 pixels)
2. Column 2 (200 pixels)
3. Column 3 (335 pixels)
4. Column 4 (200 pixels)
5. Column 4 Sidebar Widget area on right side of the page (120 pixels)

I have managed to get the posts to show in rows and columns, but cannot figure out how to get the widget areas to show on the index page.

I would appreciate some help to get this done.

Thank you,
Sumeros
  #2  
Old Jun 6, 2013, 01:38 AM
CrouchingBruin's Avatar
CrouchingBruin
 
299 posts · Aug 2010
Santa Monica, CA
So you want a five-column layout with fixed widths for your columns? Do you not need a margin in between columns?

If you read the documentation in your Dashboard > Appearance > CSS Settings > Choose CSS Grid, it says that you can create custom widths, but everything, including margins, have to add up to 960 pixels. Right now you have 955 px, so you're 5 px short, unless you intend to add some spacing in-between your columns with a margin.

So one example would be to add this to your index.php (note 5px margin to left of column 3 to make total width 960 px):
Code:
<?php get_header('Foo'); ?>
<div class="row">
   <div id="widgetarea-left" style="width:100px">
      <?php dynamic_sidebar( 'Widget Area LEFT' ); ?>
   </div>
   <div style="width:200px">
      ... Column 2 ...
   <div>
   <div style="width:335px;margin-left:5px;">
      ... Column 3 ... 
   <div>
   <div style="width:200px">
      ... Column 4 ...
   <div>
   <div id="widgetarea-right" style="width:120px">
      <?php dynamic_sidebar( 'Widget Area RIGHT' ); ?>
   </div>
</row>
<?php get_footer(); ?>
This should give you widget areas to the left and right, called Widget Area LEFT and Wdiget Area RIGHT when you go to Appearances > Widgets.
__________________
My Montezuma-themed sites: ESHS Girls Basketball Team, Venice Hongwanji Buddhist Temple
Please consider making a donation to BytesForAll for their great themes!
  #3  
Old Jun 6, 2013, 01:18 PM
jerryc
 
367 posts · Oct 2012
Florida
Try a test page and make each div a different background color. Remember, backgrounds cover padding, but not margins. If you're not using margins on the sides of your columns, you'll need padding, otherwise the content in your columns will butt up against each other.
  #4  
Old Jun 6, 2013, 04:27 PM
UmaSumeros
 
2 posts · Sep 2010
Greetings:

I thank both of you for your help with the coding and I will make the adjustments for the space between the columns.

Bookmarks

Tags
columns, rows, sidebar widgets

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Creating a page template AchtungAffen Center area post/pages 3 Jan 12, 2012 06:44 AM
Creating a home page that is a page mactony Atahualpa 3 Wordpress theme 58 Feb 7, 2011 07:19 PM
Creating a static front page creates extra Home page jillin Atahualpa 3 Wordpress theme 3 Oct 21, 2010 05:24 AM
Creating a Category Page jmek Forum How-To 2 May 29, 2009 02:44 PM


All times are GMT -6. The time now is 03:43 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.