• I’m making a new ‘wedding blog’ πŸ˜‰ with the Gemini Blue theme. It’s going to be a simple site unlike a regular blog. I want to clean the site up by removing the right sidebar and have the entire body show across the site. The only problem is that I can’t find <?php get_sidebar(); ?> in page.php

    I’m not sure if it’s renamed but this is what I have in page.php for the Gemini Blue template:

    <?php get_header(); ?>

    <div id=”static”>

    <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
    <div class=”post”>
    <h3 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h3>
    <div class=”entrytext”>
    <?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?>

    <?php link_pages(‘Pages: ‘, ”, ‘number’); ?>

    </div>
    </div>
    <?php endwhile; endif; ?>

    </div>

    <?php get_footer(); ?>

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter sfboarders

    (@sfboarders)

    NM, I found the footer.php lurking in the footer.php page. Can you tell me how to get the text to expand through the hole page?

    #content {
    float: left;
    width: 490px;
    padding-top: 10px;
    }

    That’s where to start.
    Make the width ~700px and see how you go from there.
    It’s a good theme – and post back if you need any more help.

    Thread Starter sfboarders

    (@sfboarders)

    Thanks podz for the help. That worked!!!

    PS In my last post I found the sidebar in my footer.php. page. πŸ˜€

    Thread Starter sfboarders

    (@sfboarders)

    Hey podz. I put some more links at the top but is there a way I can remove the trailing ‘|’ vertical line after the last link?

    Not easily πŸ™‚
    It’s caused by this:
    #hnav ul li a {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #fff;
    <——–
    but if you make that border-left, it will appear on the wrong side of the first item.

    One option is to delete that line, then edit ‘header.php’ and manually put in the dividers ?

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Gemini Template (Remove Sidebar)’ is closed to new replies.