Plogger Support Forum - Integrating Wordpress Theme with Sidebar on right side? Thu, 28 Mar 2024 09:03:09 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=663#Comment_663 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=663#Comment_663 Wed, 26 Oct 2005 14:19:18 +0000 ernie
Is there some place in the gallery.php that the sidebar can be place. Header and footer are fine. So is everthing else. Sidebar looks like it should just now where it should.

Otherwise I'm sticking with Plogger. Easiest to integrate so-far.

Thanks for all the help.

Ernie]]>
Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=677#Comment_677 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=677#Comment_677 Thu, 27 Oct 2005 01:43:36 +0000 jack Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=682#Comment_682 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=682#Comment_682 Thu, 27 Oct 2005 12:46:12 +0000 ernie
I've gotten my sidebar to show up on the right side (in moz 1.1/firefox, in IE it drops to the bottom, still on the right). It's getting pushed down slightly, I think from the gallery head.

The gallery rendering in moz/ie is nice, but firefox is making some inconsistant grid generation. 4 images in the first row, 2 on the right in the second, 4 in third and forth and 1 in the fifth. Ie and moz have 3 in each for 5 rows.

I've take one of my page templates and modified it to work ( sort of):

<?php require('../wp-blog-header.php');
require("gallery.php"); ?>
<?php get_header(); ?>
<div class="ncol"><!-- Begin of the narrow column -->
<div class="post"><!-- Post Div-->
<div class="entry">

<?php the_gallery_head(); ?>
<?php the_gallery(); ?>

</div>

</div><!-- End of post div-->
</div>
<div class="sidebar"><!-- If you want the full sidebar replace the following code with the get_sidebar(); function -->

<ul>

<?php get_sidebar(); ?>

</ul>

</div>
<?php get_footer(); ?>

Can I just create a page within workpress and some code to put in the gallery_head and the gallery?

That would seem easy on the outside, but like I said,

I got no skills.

Thanks for the help.

Ernie

If you want to view it:

http://www.erniesthings.com/desktop/]]>
Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=690#Comment_690 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=690#Comment_690 Fri, 28 Oct 2005 04:15:42 +0000 jack <div class="post"><!-- Post Div-->
<div class="entry">
are removed. So the gallery is right in the <content> div, which has a limited width (by pixels or left or right margin)

The gallery right now only works from within the plogger directory. So it's not a good idea to create a static page in wordpress and insert the plogger code there. Instead of the plogger index.php you must place your own modified index.php with the plogger code. So this file is in the plogger directory and not in the wordpress directory.

Hope I understood your comment correctly. By the way, your gallery looks ok here, and the sidebar is placed correctly I think. The fact that IE places the sidebar under the gallery might have something to do with the width of the gallery and the fact that IE calculates width+padding+border differently than firefox.]]>
Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=696#Comment_696 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=696#Comment_696 Fri, 28 Oct 2005 10:39:14 +0000 ernie
I notice that most of the blogs with right place sidebars just seem to take out the sidebar b/c it looks a little different that the rest of the site. Any way here is what I use for my index.php to get it to look like it does now.

<?php require('../wp-blog-header.php');
require("gallery.php"); ?>
<?php get_header(); ?>
<div class="ncol"><!-- Begin of the narrow column -->

<?php the_gallery_head(); ?>
<?php the_gallery(); ?>

</div>
<div class="sidebar"><!-- If you want the full sidebar replace the following code with the get_sidebar(); function -->

<ul>

<?php get_sidebar(); ?>

</ul>

</div>
<?php get_footer(); ?>

If any one can add, delete, or change something to get it to look consistant that would be friggin awsome.

Thanks again

Ernie]]>
Integrating Wordpress Theme with Sidebar on right side? http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=698#Comment_698 http://www.plogger.org/forum/comments.php?DiscussionID=133&Focus=698#Comment_698 Fri, 28 Oct 2005 10:54:20 +0000 ernie
<?php require('../wp-blog-header.php');
require("gallery.php"); ?>
<?php get_header(); ?>
<div class="ncol"><!-- Begin of the narrow column -->

<?php the_gallery_head(); ?>
<?php the_gallery(); ?>

</div>


<?php get_sidebar(); ?>


<?php get_footer(); ?>

This works for me at least.

The only thing I had to change other wise was the large thumbnail width I changed to 400px, at 500 the sidebar overlapped the large thumb in firefox and ie pushed the sidebar down below the image.

Thanks for all the help.

Ernie]]>