Horizontal scrollbar

Discussion corner for Developers of Serendipity.
Post Reply
Alexander1977
Regular
Posts: 5
Joined: Wed Dec 21, 2005 12:40 pm

Horizontal scrollbar

Post by Alexander1977 »

Hello,

I'm getting crazy here. I don't seem te be able to remove that anoying horizontal scrollbar. I have a very simple frameset (2 frames) that doesn't show any scrollbars when referring to some files.

http://gradatie.com/homepage/blogstart/

But as soon as I refer to the index.php of the weblog file the horizontal scrollbar appears. I tried to find the banner tags in the css file (as referred to in another post) but couldn't find them. What serendipity code makes the scrollbar appear when using frames?

Thanks so much!

Alexander
judebert
Regular
Posts: 2478
Joined: Sat Oct 15, 2005 6:57 am
Location: Orlando, FL
Contact:

Post by judebert »

I visited your site using FireFox 1.5/Windows 2000. No horizontal scrollbars, no matter what I click.

If you provide more detailed instructions, I'll visit again.
Way
Regular
Posts: 59
Joined: Mon Nov 07, 2005 12:39 am
Location: SA
Contact:

Post by Way »

I think you should some changes on style.css file (you find this file in template directory)
Well Serendipity Banner code is this:

Code: Select all

#serendipity_banner {
    margin: auto;
    width: 85%;
    height: 72px;
	 background-image: url({TEMPLATE_PATH}img/background.png);
}
You may do the changes as you like on the ratio and height and the image

In the mainpane area you may adjust the width of the template itself by using ratio, will be better like (85%) , and to leave margin to auto

Code: Select all

#mainpane {
    border-bottom: 1px solid #000000;
    margin: auto;
    width: 85%;
    border-top: 0px;
    background-color: #FFFFFF;
    border-top: 1px solid #000000;
  
}
In the body area you may adjust some of your theme appearance like:
Like padding , margin , and so on

Code: Select all

body {
   direction: {LANG_DIRECTION};
text-align: right;
font-size: 13pt;
    margin: 0;
    background-color: #D2DFF2;
    font-family: verdana, arial, helvetica, sans-serif;
    margin-bottom: 30px;

}
Post Reply