PDA

View Full Version : Some More Help Needed...


CheckSix
01-30-2005, 08:38 PM
I finally got Pixelpost working and I love it! But, I need some help getting it working correctly in the way I'd like it to.

1) My calendar isn't displaying. I've gone into Admin's options and selected horizontal calendar. But, it doesn't display. Is it because my background is white and so is the calendar. I can't find the code to change the color.

2) How do I get the image centered in the page? When I post a vertical picture, it posts it off center. How do I get the picture centered.

Thanks for any answers!

Connie
01-31-2005, 08:15 AM
1) which template are you using?

The display depends from the CSS which is (mostly) defined in the template itself

2)
The position of the image is again depending from the CSS

so please tell us which template you use and we can go further

CheckSix
02-01-2005, 12:00 AM
Default PixelPost Dark Template (modified with white background and black text because I didn't like the text style of the light template)

Connie
02-01-2005, 06:04 AM
Mr. Checksix, you should check #7 :lol:

1)
the template, which you use, does not integrate one of these Tags:
<SITE_NORMAL_CAL> // css-format, empty days, today date, and image-exist plus navigation (monthname's etc)
<SITE_HORIZONTAL_CAL>>

am I right?

in german we say: "Keine Händchen, keine Kekse" which means "No hands, no cookies..."

So it cannot display what is not there... you should look at http://www.pixelpost.org/forum/viewtopic.php?t=3, there you will find the list of possible tags which you can integrate

2)
to center something is always not so easy in CSS, but that is not the fault of PixelPost...

you can try to edit the css-definitions of your image-template

look for the definition of wrapper and change these line:

#wrapper {
margin:0px auto;


to
#wrapper {
margin-top:0px;
margin-bottom:0px;
margin-left:auto;
margin-right:auto;

it could help...

it always depends of the width of the screen and the width of the image as well, maybe you check with other templates, there are a quite a lot here at the download section and when your image is positioned ok, take this and integrate it into your template...

CheckSix
02-02-2005, 03:28 AM
After dinking around in the code, I finally figured it out. Thanks for the help Connie!