Plogger Support Forum - Making the plogger page a little narrower Thu, 28 Mar 2024 18:57:01 +0000 http://www.plogger.org/forum/ Lussumo Vanilla 1.1.10 Making the plogger page a little narrower http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=183#Comment_183 http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=183#Comment_183 Sat, 01 Oct 2005 00:23:33 +0000 hahmed
as you can see, the plogger part of the site is a little bit wider than the background image of my wordpress theme. How can i just narrow the plogger page down a little bit so itll fit within the white space?

Thanks,
haseeb]]>
Making the plogger page a little narrower http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=185#Comment_185 http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=185#Comment_185 Sat, 01 Oct 2005 06:18:59 +0000 gangavalli Making the plogger page a little narrower http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=191#Comment_191 http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=191#Comment_191 Sun, 02 Oct 2005 01:22:45 +0000 hahmed
just tell me what file to open up and edit, and what to replace with what.

thanks]]>
Making the plogger page a little narrower http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=192#Comment_192 http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=192#Comment_192 Sun, 02 Oct 2005 04:42:34 +0000 jack
Probably the wordpress css and the plogger css are conflicting. The part of the page that plogger is in, is wrapped inside it's own <div> called "<div id="wrapper">". If you change this div in the gallery.css into something like width:90%; or a fixed width:600px; this will probably help. You have to experiment a little with the values.
If the wrapper-div doesn't center, you can add 'margin:0 auto;' to the css description of that div.

Now you have:
#inner_wrapper {
/* padding: 10px;*/
width: 100%;
}

#wrapper {
font-family: Verdana, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
font-size: 10pt;
}

Try this:
#wrapper {
position:relative;
width:600px; /*or something else*/
margin:0 auto;
font-family: Verdana, "Trebuchet MS", Geneva, Arial, Helvetica, SunSans-Regular, sans-serif;
font-size: 10pt;
}

If this doesn't work, I noticed you still have the <div class="post"> in that page. Perhaps this isn't necessary and you can remove that div (including of course it's closing div </div> somewhere at the bottom of the page.]]>
Making the plogger page a little narrower http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=212#Comment_212 http://www.plogger.org/forum/comments.php?DiscussionID=42&Focus=212#Comment_212 Mon, 03 Oct 2005 12:18:41 +0000 hahmed
everythings pefect now :)]]>