Topic: FAQ, Common Questions & Alternate Solutions

IMPORTANT NOTICE: To keep this FAQ clean I have closed it. Please message me for any questions on this topic or it's replies.

Compatibility
Arras Theme: 1.5.0.1 (Should work on 1.5.X)
Wordpress: 3.1 (Should work on 3.2.X)

Important Notice: I cannot guarantee these solutions will work with every website. You should ALWAYS have a backup available before making any changes on your websites.

Good Practices:

  • Always have a backup of your work before you decide to tinker or change something.

  • In relationship to the preceding line, you'd be better off running an exact duplicate of your installation, running as a development/test site as opposed to your actual website.

Frequently Asked Questions & Their Solutions:
How can I change the width of the theme?
Additional featured content areas, rounded edges, social icons & more
What are the default sizes for single post thumbnails & the slideshow?
My menu doesn't work correctly. What's wrong?
How can I center images within the slide show/Why are my images stretched or skewed?
I want to be able to use posts, pages and external URLs in my slide show. How can I do that?
How can I add "X" to the sidebar tabbed widget?
I'm not happy with the default "next/previous" page styling for additional posts. How can I add paged styling?
How can I have a full width post/page in a 2-column layout?
I only want to show certain widgets on certain pages. How can I do that?
How can I remove the "Allowed Tags" line in the comment area?
My CSS styles aren't working right. What's the problem?
How can I add a new widget area?
Why aren't my user.css changes reflected on my site?
I want paged navigation at X. How?
How can I create a full width slideshow, while keeping the sidebar?
How can I add conditional terms to have different tapestries on the archive pages?
How can I get ads in place of the search bar on my header?
How can I change the widths of the main content area and sidebars? or how can I fit my ads inside the sidebar?

Re: FAQ, Common Questions & Alternate Solutions

Wordpress 3.0 Menu System:
It is very important to understand the Wordpress 3 menu system. Use the following image as references for this post.

The Menu Screen (With screen options selected)
http://s4.postimage.org/5zcencdg/Menu_Screen_Options.png

The Default Menu Screen
http://s4.postimage.org/5ze26ov8/Menus_Screen.png

The Menu Item Box (Located in a box within the default menu screen)
http://s1.postimage.org/1o4vb48lg/Menu_Creation_Screen.jpg

Detailed Instructions

To explore the Menus feature,  you must have created some menus to assign to the appropriate theme locations.

Create A Menu
To create a menu you must hit the "+" tab or button in the "Menu Creation" tab. This symbolizes adding additional menus. You will then give it a name and add the different menu items as illustrated "The Default Menu Screen" image above. To differentiate between "Parent" and "Child" categories you will need to use the drag-and-drop function of Wordpress. Items located to the farthest left are the main menu items. Anything that is indented right of those are children and sub-children.

When you are satisfied with your menu you must save it. The order in which menu items are shown are typically based on a top-to-bottom / left-to-right (ltr) or right-to-left (rtl) order, depending on whether or not your particular theme is set up for ltr or rtl. By default the theme is loaded as ltr.

Note: Many people have trouble adding items to their menu, simply because they are not shown in the screen options. To get particular areas to appear in "The Default Menu Screen" you have to select the items you wish to see from the "Screen Options" as shown in "The Menu Screen (With screen options selected)" image.

Add A Menu To The Arras Menu Areas
Now that you've created a menu, lets look at assigning a menu to a theme area. The Arras theme has two menu areas by default. Those areas are the "Top Menu" and "Main Menu" as shown in "The Default Menu Screen" image. Basically you can create up to two menus and assign them to the "Top Menu" and "Main Menu" as shown in "The Default Menu Screen" image. Again you will need to save your settings in this particular box.

If you've mastered the steps above correctly, you should now have nicely functioning menus.

Advanced Techniques
You can always use plugins for further advancement of the menu system, however the new menu system introduced in Wordpress 3.X is sufficient for most needs.

Menu Place Holders
Lets say I want to have a menu that has Sports as one of the main menu items. I plan on creating pages or posts that are children of the Sports menu item, but I don't want to have to create an actual page or post, as it will just be blank and take up space.

I would create a custom link via the widget "Custom Links" as shown in "The Default Menu Screen" image above. By default Wordpress will not allow you to add a custom link with no URL. As a work around I would simply type a space after the "http://" as the url. (I.e. "http:// ") This will allow me to add a custom link with no particular URL. To get this menu item functioning as a menu place holder we still need to clean it up. What I've done is created a "dummy" link in which we will remove the URL, but still allow the menu item to function as part of the menu.

In "The Menu Item Box (Located in a box within the default menu screen)" image above you will see the settings for the menu item I've created. I removed the URL from this box. Save your menu and your done.

Your new menu place holder should now show up in the menu you've associated it with.

Re: FAQ, Common Questions & Alternate Solutions

Slideshow - Centered Images/Stretched Images

There is no simple "fix" button to make everything work exactly as you desire. The default generator does the best it can to fit your image into the slider depending on the layout you have chose for the theme. (1-column, 2-column or 3-column) If you would like your images to look the best possible then the largest image you use should be the same size as the height and width limits defined in the theme settings for your thumbnails, while maintaining a good aspect ratio.

In my opinion everything should be determined based on the size you plan to use for your image slider, then the other display type images should be a scaled down version of that with a good aspect ratio. You should also have an image editor and "max size" canvas template set up to allow you to center images within your thumbnails.

[Image size suggestion notes area]

Firefox only: get an add-on called fireshot and set the preferences to your liking and it will generate a pretty decent image.
Paint.net: You can use pain.net to determine proper aspect ratios for your images and create a canvas template for centering images.

Another solution provided by member @BP:

Add this to user.css ".featured-article"

.featured-article {
background-position: top center !important; 
}

Note: You must use !important to override the style background-position: 0 0; applied within the element itself, otherwise it has priority.

Re: FAQ, Common Questions & Alternate Solutions

Alternate Slideshow Style:
Install http://wordpress.org/extend/plugins/dyn … ry-plugin/

This plugin allows you to use posts or pages in your slider, use external URLs.
All of the basic settings can be found in the plugin settings or via the edit page/post screens.

How to implement this

In the "arras/library" directory open slideshow.php:

Find:

        <div id="featured-slideshow">
            <?php $count = 0; ?>
        
            <?php while ($q->have_posts()) : $q->the_post(); ?>
            <div class="featured-slideshow-inner" <?php if ($count != 0) echo 'style="display: none"'; ?>>
                <a class="featured-article" href="<?php the_permalink(); ?>" rel="bookmark">
                <?php echo arras_get_thumbnail('featured-slideshow-thumb'); ?>
                </a>
                <div class="featured-entry">
                    <a class="entry-title" href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a>
                    <div class="entry-summary"><?php the_excerpt() ?></div>
                    <div class="progress"></div>
                </div>
            </div>
            <?php 
            arras_blacklist_duplicates(); // required for duplicate posts function to work.
            $count++; endwhile; ?>
        </div>

Replace with:

        <div id="featured-slideshow">
<?php dynamic_content_gallery(); ?>
        </div>

Save and re-upload.

Basically this replaces the default slider with the slider from the plugin.

You will also need to add the following to user.css to hide the default slider controls:

#controls {
    display: none;
    top: 110px;
    width: 610px;
}

Customize using the plugin settings. I suggest you use the size 640x250 (2-column), such that it fills the space similar to the default slider provided with Arras, however it's your slide show to deal with.

Re: FAQ, Common Questions & Alternate Solutions

Sidebar Tabbed Widgets:
My Favorite - http://wordpress.org/extend/plugins/fun … ebar-tabs/

Why you ask?
I realize that it is older, but to my knowledge still works great. The Fun With Sidebar Tabs allows you to add up to 9 tabbed widget areas to your theme (allowing any number of tabs within those tabbed widget areas) using the default widget areas supported by the Arras theme.

How to use it?
Appearance>Widgets
At the bottom left of the screen there is a box which asks you how many tabbed sidebar areas you would like. After you've set that it will add "Tabbed Sidebar #" boxes (however many you've selected) into the "Available Widgets" pool. It will also add a new widget area box to the right of the pool area named "Tabbed Sidebar #".

Now what you do is take the "Tabbed Sidebar #" widget from the "Available Widgets" pool and add it to say the "Primary Sidebar" widget area on the right. Now you can add ANY available widget from the "Available Widgets" pool to the "Tabbed Sidebar #" widget area on the right and it will give you options to give the widget a name and styling options.

On your front end you should now see the tabbed widget you've added.

Honorable Mentions:
Pretty much anything in the Wordpress plugin directory.
http://wordpress.org/extend/plugins/sea … &sort=

Re: FAQ, Common Questions & Alternate Solutions

Paged Navigation:
http://wordpress.org/extend/plugins/wp-pagenavi/

This plugin will add paged navigation to your website. The default is set to only have two buttons (previous and next).

Re: FAQ, Common Questions & Alternate Solutions

Full Width Pages/Posts: (For 2-column layouts)

Things needed:

Add the following to the "user.css" file:

#contentfw {
    margin:0;
    width:960px;
    overflow:hidden;
}

For Posts
Copy the file "Single.php" and rename it to "posttpl-[YOUR TEMPLATE NAME WITHOUT THE BRACKETS].php".
Example: posttpl-fullwidthpost.php

Add the following to the top of the page:

<?php
/*
Template Name Posts: Full Width Post
*/
?>

Change the following:

<div id="content" class="section">

to:

<div id="contentfw" class="section">

Remove the following from the bottom:

<?php get_sidebar(); ?>

(In some cases you may need to add </div> after removing the sidebar)

For Pages
Copy the file "page.php" and rename it to "pagetpl-[YOUR TEMPLATE NAME WITHOUT THE BRACKETS].php".
Example: pagetpl-fullwidthpage.php

Add the following to the top of the page:

<?php
/*
Template Name: Full Width Page
*/
?>

Change the following:

<div id="content" class="section">

to:

<div id="contentfw" class="section">

Remove the following from the bottom:

<?php get_sidebar(); ?>

(In some cases you may need to add </div> after removing the sidebar)

Now all you need to do is choose the "Full Width Post or Page" custom post template meta box in the Add/Edit post screen.

Note: Sizes and names may need to be adjusted to fit your theme style.

Re: FAQ, Common Questions & Alternate Solutions

How can I hide widgets on a per page/post basis?
http://wordpress.org/extend/plugins/widget-context//

Info: This widget will allow you to hide or display widgets on a per page/post basis.

Re: FAQ, Common Questions & Alternate Solutions

What are the default size settings for the post thumbnail/featured slideshow images?

This all depends on page style and custom edits, but the default settings look best at:

2-column
Single Post Thumbnail     Width 620 Height 250
Featured Slideshow             Width 640 Height 250

3-column
Single Post Thumbnail     Width 470 Height 250
Featured Slideshow             Width 490 Height 250

Re: FAQ, Common Questions & Alternate Solutions

How can I remove the "Allowed Tags" line in the comment area?

Open user.css

Add or change:

p.form-allowed-tags {
display:none;
}

Save & Re-upload. Enjoy!

Re: FAQ, Common Questions & Alternate Solutions

How can I make it easier to get help with my website?

  • Be patient

  • Edit your profile by clicking "Profile" in the top menu of this forum. Next click on "Identity" and add your website url to the "Website" field.

  • Be very detailed and clear

  • List your host server details (PHP Version & other relevant information)

  • Arras Theme Version & Wordpress Version

<<-----This will add your website link on your profile for the forums.

Re: FAQ, Common Questions & Alternate Solutions

Why aren't my changes in the user.css file working correctly?

Typically users think that they can remove lines of code in a default style and have those changes reflected in the user.css file. This is not the case. You have to copy the default style line after line and alter those lines. The user.css is an Override file and not a replacement. You MUST override the styles and not just delete the lines you don't care to use.

Another problem users come across is that their user.css file isn't correctly reflecting the changes they've made. This is common when dealing with the Wordpress theme editor. For no-hassle problems you should be using a FTP program to make changes to your theme.

Re: FAQ, Common Questions & Alternate Solutions

How can I add a new widget area?

(This particular example based on a single column layout)

Open launcher.php

Find:

register_sidebar( array(
    'name' => 'Bottom Content #2',
    'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
    'after_widget' => '</li>',
    'before_title' => '<h5 class="widgettitle">',
    'after_title' => '</h5>'
) );

Add below that, this:

register_sidebar( array(
    'name' => 'Bottom Content #3',
    'before_widget' => '<li id="%1$s" class="widgetcontainer clearfix">',
    'after_widget' => '</li>',
    'before_title' => '<h5 class="widgettitle">',
    'after_title' => '</h5>'
) );

Open home.php

Find:

<div id="bottom-content-2">
    <?php if ( isset($sidebars['sidebar-5']) ) : ?>
    <ul class="clearfix xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #2') ) : ?>
        <li></li>
        <?php endif; ?>
    </ul>
    <?php endif; ?>
</div>

Duplicate this, rename the CSS style and add it just below the original.

Example:

<div id="bottom-content-2">
    <?php if ( isset($sidebars['sidebar-5']) ) : ?>
    <ul class="clearfix xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #2') ) : ?>
        <li></li>
        <?php endif; ?>
    </ul>
    <?php endif; ?>
</div>
<div id="bottom-content-3">
    <?php if ( isset($sidebars['sidebar-6']) ) : ?>
    <ul class="clearfix xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Bottom Content #3') ) : ?>
        <li></li>
        <?php endif; ?>
    </ul>
    <?php endif; ?>
</div>

Now all you need to do is add a new style called "bottom-content-3" and add it to your user.css.

Here is the default code for both of the bottom content widgets:

#bottom-content-1, #bottom-content-2 {
    float: left;
    list-style: none outside none;
    margin: 30px 10px 10px 0;
    overflow: hidden;
    padding: 0;
    width: 320px;
}

If you'd like something that looks exactly the same then all you have to do is add the new style. Something like this.

#bottom-content-1, #bottom-content-2, #bottom-content-3 {
    float: left;
    list-style: none outside none;
    margin: 30px 10px 10px 0;
    overflow: hidden;
    padding: 0;
    width: 320px;
}

Or

#bottom-content-3 {
    float: left;
    list-style: none outside none;
    margin: 30px 10px 10px 0;
    overflow: hidden;
    padding: 0;
    width: 320px;
}

If you'd like to control the styling separately from the default widgets.

*Note: The above code may need to be modified slightly from site to site depending on the layout style you are using, but this should get you in the right direction. You can also attempt to use this as an example to test adding widgets to other areas.

Re: FAQ, Common Questions & Alternate Solutions

Some users experience issues when making the changes through the Wordpress theme editor. Please try using a FTP program to make changes to your site.

Re: FAQ, Common Questions & Alternate Solutions

1. Think of the homepage as a overall view of your content. The homepage has content areas which are determined based on the categories you select in Arras>Theme Options>Home. Any and all categories (and stickies if you have those selected) selected for each area will be shown in the homepage content areas. The top are is referred to as the "Slideshow" content area. The area just below that is referred to as the "Featured Posts #1" content area. The area below that is referred to as the "Featured Posts #2" content area and the area below that is referred to as the "News Posts" content area. Each of these content areas can have the same or different categories assigned to them. Any post you have assigned to those categories will show up in the content areas as you arrange them.

2. The blank area and the sidebar on the far right are widget areas. You can only assign widgets to them. You can use the basic "Text Widget" to attempt to add a table if you like.

Re: FAQ, Common Questions & Alternate Solutions

I'm assuming you have widgets defined for the new widget areas? Are you seeing the new widget areas in the admin? Please provide a link to your site. Better yet add your website URL to your profile for future support problems.

Re: FAQ, Common Questions & Alternate Solutions

rfrank - You've added the new CSS style and code to the home.php page?

nh - You have to change the widths for each bottom content widget style.

I changed the width for the original bottom widgets and tested the following in firebug and it works:

#bottom-content-1, #bottom-content-2 {
    float: left;
    list-style: none outside none;
    margin: 0 10px 10px 0;
    overflow: hidden;
    padding: 0;
    width: 165px;
}

Re: FAQ, Common Questions & Alternate Solutions

I see what you see, but it should work for version 3.0 and up.

Re: FAQ, Common Questions & Alternate Solutions

Nothing is official as every site will vary depending upon the styling applied. What I've suggested above is what looks best visually on a fresh install of the Arras theme, 1.4.X and up.

If your asking if you can use one width for both 2-column & 3-column styles then the answer is no.

If you are asking if you can use one set of numbers for both thumbnails in each of their own layouts (2-column/3-column), then yes.

Re: FAQ, Common Questions & Alternate Solutions

Paged Navigation

Paged navigation only works on post pages with more than one page and the news section of the homepage as defined in the arras theme options, although others have worked out solutions.

Reference post: http://www.arrastheme.com/forums/topic7 … ssing.html

Re: FAQ, Common Questions & Alternate Solutions

Want additional featured content areas, rounded edges, social icons & more?

A guru has created a child theme capable of adding multiple features to arras. Please see if this satisfies your needs first.
http://www.arrastheme.com/forums/topic3 … re-ii.html

We're sorry the theme doesn't support your feature.
Suggest a new feature - http://www.arrastheme.com/forums/forum5 … uests.html

Re: FAQ, Common Questions & Alternate Solutions

This solution is made based on a single sidebar setup. You can probably wing it to figure out the second sidebar adjustments to be made.

Basically you have to provide an if statement (<?php if (is_home() || is_front_page()) { ?>) to your sidebar.php page and add a new user.css style.

Here is a copy of my sidebar.php:

</div><!-- #container -->

<?php wp_reset_query() ?>

<?php if (is_home() || is_front_page()) { ?>
<div id="primary" class="aside main-aside-home sidebar">
<?php arras_above_sidebar() ?>  
    <ul class="xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Primary Sidebar') ) : ?>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Welcome to Arras!', 'arras') ?></h5>
                <div class="widgetcontent">
                <div class="textwidget">
                    <p><?php _e('Arras is a WordPress theme designed for news or review sites with lots of customisable features.', 'arras') ?></p>
                </div>
                </div>
            </li>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Recent Posts', 'arras') ?></h5>
                <div class="widgetcontent">
<?php 
                $r = new WP_Query(array('showposts' => 10, 'what_to_show' => 'posts', 'nopaging' => 0, 'post_status' => 'publish', 'caller_get_posts' => 1));
                if ($r->have_posts()) :
?>
                <ul>
                <?php while ($r->have_posts()) : $r->the_post(); ?>
                <li><a href="<?php the_permalink() ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li>
                <?php endwhile ?>            
                </ul>
<?php
                wp_reset_query();
                endif;
?>
                </div>
            </li>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Tag Cloud', 'arras') ?></h5>
                <div class="tags widgetcontent">
                <?php wp_tag_cloud(); ?>
                </div>
            </li>
        <?php endif; ?>
    </ul>        
</div><!-- #primary -->
<div id="secondary" class="aside main-aside-home sidebar">
    <ul class="xoxo">
        <!-- Widgetized sidebar, if you have the plugin installed.  -->
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Secondary Sidebar #1') ) : ?>
        <li></li>        
        <?php endif; ?>
    </ul>
    <?php arras_below_sidebar() ?>  
</div><!-- #secondary -->

<?php } else { ?>
<div id="primary" class="aside main-aside sidebar">
<?php arras_above_sidebar() ?>  
    <ul class="xoxo">
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Primary Sidebar') ) : ?>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Welcome to Arras!', 'arras') ?></h5>
                <div class="widgetcontent">
                <div class="textwidget">
                    <p><?php _e('Arras is a WordPress theme designed for news or review sites with lots of customisable features.', 'arras') ?></p>
                </div>
                </div>
            </li>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Recent Posts', 'arras') ?></h5>
                <div class="widgetcontent">
<?php 
                $r = new WP_Query(array('showposts' => 10, 'what_to_show' => 'posts', 'nopaging' => 0, 'post_status' => 'publish', 'caller_get_posts' => 1));
                if ($r->have_posts()) :
?>
                <ul>
                <?php while ($r->have_posts()) : $r->the_post(); ?>
                <li><a href="<?php the_permalink() ?>"><?php if ( get_the_title() ) the_title(); else the_ID(); ?> </a></li>
                <?php endwhile ?>            
                </ul>
<?php
                wp_reset_query();
                endif;
?>
                </div>
            </li>
            <li class="widgetcontainer clearfix">
                <h5 class="widgettitle"><?php _e('Tag Cloud', 'arras') ?></h5>
                <div class="tags widgetcontent">
                <?php wp_tag_cloud(); ?>
                </div>
            </li>
        <?php endif; ?>
    </ul>        
</div><!-- #primary -->
<div id="secondary" class="aside main-aside sidebar">
    <ul class="xoxo">
        <!-- Widgetized sidebar, if you have the plugin installed.  -->
        <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Secondary Sidebar #1') ) : ?>
        <li></li>        
        <?php endif; ?>
    </ul>
    <?php arras_below_sidebar() ?>  
</div><!-- #secondary -->
<?php } ?>

What I did was duplicate the original style and add if/else statements. I've added a new class called "aside main-aside-home sidebar" for if the page is the homepage.

Here is the css style I used:

.main-aside-home {
    float: right;
    position: relative;
    width: 300px;
    top: 390px;
}

You will need to change the "top: 390px;" attribute to fit your slideshow.

Please create a backup of your sidebar.php in case you run into problems.

Enjoy!  big_smile

Re: FAQ, Common Questions & Alternate Solutions

It's not simple, but not all that hard to change the width of the theme (sidebars and content). Depending on your layout and needs, the following tutorial will need to be adjusted to fit your needs. The info below is based on the layout with left and right sidebars around the content.

It is highly recommended that you are using Firebug for Firefox to test out and manipulate the changes in the tutorial below.

Note: All adjustments are made in the user.css file as an override.

Adjusting the main content area
The main content is the area that holds the sidebars and content. We are going to change that to 1200px.

Default Code:

#main {
  margin: 0 auto;
  position: relative;
  width: 960px;
}

Adjustment:

#main {
  margin: 0 auto;
  position: relative;
  width: 1200px;
}

Note the change in width for the adjustment.

Adjusting other content areas to fit our new width
Now that we have defined our width of 1200px in the example above, we have to decide what widths we would like the other elements of our content to be (keeping in mind that we will have 10px of spacing around each element). Although we have 10px around our elements, doesn't mean that you will assign a padding or margin of 10px to each element as it may only apply to one element and not the other(s).

I'm going to make my sidebars a width of 300px

Default Code:

#primary {
  float: left;
  margin: 0 0 0 -960px;
  width:220px;
}

#secondary {
  float: left;
  margin: 0 0 0 -220px;
  width: 220px;
}

Adjustment:

#primary {
  float: left;
  margin: 0 0 0 -960px;
  width:300px;
}

#secondary {
  float: left;
  margin: 0 0 0 -220px;
  width: 300px;
}

Note the change in width for the adjustment in both primary and secondary sidebars.

At this particular point in time you should notice that all the changes are basically done, we just need to move the content area.

Default Code:

#content {
  margin: 0 220px 0 230px;
  overflow: hidden;
}

Note the margins of 220px that were for the original sidebar sizes of the primary and secondary sidebars.

Adjustment:

#content {
  margin: 0 220px 0 310px;
  overflow: hidden;
}

We've now adjusted the content to float 10px to the right of the left or primary sidebar. We now have to re-assess the secondary sidebar and adjust it's margin accordingly.

Original Adjustment:

#secondary {
  float: left;
  margin: 0 0 0 -220px;
  width: 300px;
}

New Adjustment:

#secondary {
  float: left;
  margin: 0 0 0 -60px;
  width: 300px;
}

This should put the sidebar on the far right as you would expect with a 10px margin. (I used firebug to make the visual adjustment)

Now all we have to do is readdress our content area with the following to get it centered up and looking good.

Original Adjustment:

#content {
  margin: 0 220px 0 310px;
  overflow: hidden;
}

New Adjustment:

#content {
  margin: 0 60px 0 310px;
  overflow: hidden;
}

Note the width of 60px to match the -60px from the adjustment for the secondary sidebar.

You should now have a working 1200px wide main content area. Similar techniques can be used to adjust the header and footer accordingly. As far as the featured slideshow is concerned, you will need to adjust the height and width in the theme settings to fit your needs.

Enjoy!

Re: FAQ, Common Questions & Alternate Solutions

How can I get ads in place of the search bar in my header?

http://www.arrastheme.com/forums/post33475.html#p33475

Re: FAQ, Common Questions & Alternate Solutions

How can I change the widths of the main content area and sidebars? or how can I fit my ads inside the sidebar?

This is a complicated situation, but I'll provide a starting point.

Assuming you have a 2 column layout and you are happy with the main content area width, you could add or change the following in your user.css file:

(You only need to fiddle with the widths in the following elements.)

#container {
  float: left;
  width: 640px;
}

#content {
  margin: 0;
  overflow: hidden;
  width: 640px;
}

.main-aside {
  float: right;
  position: relative;
  width: 320px;
}

Notes: The "container" style encompasses the "content" style, so those should be equal widths. The "main aside" style encompasses the primary sidebar so that is why I only reference that in this example.

Assuming you have a 3 column layout you could add or change the following in your user.css file:

(You only need to fiddle with the widths in the following elements except with Primary and Secondary sidebars. For these you will need to play with the 220 value margins. It could be adding a positive number or subtracting some additional numbers.)

#container {
  float: left;
  width: 640px;
}

#content {
  margin: 0;
  overflow: hidden;
  width: 640px;
}

#primary {
  float: left;
  margin: 0 0 0 -960px;
  width: 220px;
}

#secondary {
  float: left;
  margin: 0 0 0 -220px;
  width: 220px;
}

Notes: The "container" style encompasses the "content" style, so those should be equal widths.

If you want to change the width of the entire content area, you will have to adjust all of the following style widths before doing the things listed above:

#top-menu
#header
#nav
#wrapper
#main
#footer

This tutorial also assumes you don't have bottom content widgets. If you do you will need to play with those widths as well.

Together:

#bottom-content-1, #bottom-content-2 {
  float: left;
  list-style: none outside none;
  margin: 0 10px 10px 0;
  overflow: hidden;
  padding: 0;
}

Or individually if you'd like two different sizes:

#bottom-content-1 {
  float: left;
  list-style: none outside none;
  margin: 0 10px 10px 0;
  overflow: hidden;
  padding: 0;
}

#bottom-content-2 {
  float: left;
  list-style: none outside none;
  margin: 0 10px 10px 0;
  overflow: hidden;
  padding: 0;
}

You need to be aware that different styles have different paddings and margins. For every adjustment you may also need to modify your thumbnail widths. You may have to take those into account as well.