• Resolved Satman1

    (@satman1)


    I’m using a theme called superblogger and i need it to be one column to dispaly products next to each other, is there a way to remove the right column (without there being white space left, i tryed to just delete the css from the sidebar but all was left was a white space i couldn’t use.)
    heres my blog-https://www.tomtom-extras.co.uk

Viewing 5 replies - 1 through 5 (of 5 total)
  • Is it a page that you want to create?

    Thread Starter Satman1

    (@satman1)

    yes i need to start again

    Try creating a separate page template.
    Ex:
    1. Go to your theme’s folder and copy page.php and rename it to something like fullwidth-page.php

    2. On top of the file is <?php get_header(); ?> change it to

    <?php
    /*
     * Template Name: Full Width Template
     */
    get_header(); ?>

    3. Look for this line <div id="content" class="narrowcolumn"> and add another class like “fullwidth” or whatever so it would look like <div id="content" class="narrowcolumn fullwidth">

    4. Scroll down to the bottom and remove <?php get_sidebar(); ?>

    5. Next, open style.css and add these lines at the bottom…

    /* Custom CSS */
    .fullwidth, .fullwidth .post,
    .fullwidth .entry {
    	width: 960px;
    }

    6. When you create a page and want to have a full width page then just change the template to the new page template that you created (e.g. Full Width Template)

    7. Save/publish and check the page

    Note: You might have to do some more adjustments on the styles if it looks weird.

    Thread Starter Satman1

    (@satman1)

    Thanks i’ll try that now

    Thread Starter Satman1

    (@satman1)

    YES! Your advice has worked again,thanks alot!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Can i change 2 columns to 1?’ is closed to new replies.