PhpDig.net

Go Back   PhpDig.net > PhpDig Forums > Troubleshooting

Reply
 
Thread Tools
Old 06-01-2004, 12:58 AM   #1
Hoek
Green Mole
 
Join Date: Feb 2004
Posts: 17
Horizontal scrollbar in template

Hi Forum,

With some search-queries I get a horizontal scrollbar in the template wich is displaying the result. This scrollbar sometimes appears, and sometimes not, depending on de query. You can see this at www.professioneel-handhaven.nl. The site is in Dutch, but that should not matter...

When you search the term 'baudina' you get 2 hits as result, with horizontal scrollbar. When you search 'baudina sonja' you get the same hits, without scrollbar?

Who can help me out with this strange problem? I tried several standard templates, all with the same problem.

Rolf
Hoek is offline   Reply With Quote
Old 06-01-2004, 04:35 AM   #2
vinyl-junkie
Purple Mole
 
Join Date: Jan 2004
Posts: 694
I'm not sure exactly where the problem is, but I'd start by looking at places within your code where you specify width in your table as pixels instead of percentage. For example, this:
PHP Code:
<img src="tpl_img/bar_middle.gif" height="16" width="100.00" alt=""
There are two places I see with code similar to the above. Also, there's this:
PHP Code:
<img src="../../images/achtergrond.jpg" width="800" 
I'm not sure just what part of the page that is, but if you're going to use pixels instead of percent that should be no more than 780. In a browser with 800 x 600 resolution, 10 pixels on each side get chopped off so 780 should prevent horizontal scrolling - provided there isn't something else that I missed in scrutinizing your code.

Something else to consider. Percentage is the preferred method, in my opinion, because the page will render better in different resolution browsers that way.

Hope this helps.
vinyl-junkie is offline   Reply With Quote
Old 06-01-2004, 06:44 AM   #3
Hoek
Green Mole
 
Join Date: Feb 2004
Posts: 17
Unfortunetely, your solution does not work. By the way: when you search for instance 'baudina sonja' the layout is OK, so there must be a problem in the way de phpdig-scripts generates the code.

I put the template in a layer with fixed horizonta size, and variable vertical size. I wonder why is works sometimes , and sometimes not, depending on the search-string.
Hoek is offline   Reply With Quote
Old 06-01-2004, 12:49 PM   #4
vinyl-junkie
Purple Mole
 
Join Date: Jan 2004
Posts: 694
This is untested, but find the following code in search_function.php
PHP Code:
'img_tag' => '<img border="0" src="'.WEIGHT_IMGSRC.'" width="'.ceil(WEIGHT_WIDTH*$weight/100).'" height="'.WEIGHT_HEIGHT.'" alt="" />'
and replace it with
PHP Code:
'img_tag' => '<img border="0" src="'.WEIGHT_IMGSRC.'" width="'.WEIGHT_WIDTH.'" height="'.WEIGHT_HEIGHT.'" alt="" />'
Be sure to remove any word wrapping in the above code.

Let us know if this solves the problem.
vinyl-junkie is offline   Reply With Quote
Old 06-01-2004, 11:31 PM   #5
Hoek
Green Mole
 
Join Date: Feb 2004
Posts: 17
I tried your suggestion, but with no results. I decided to choose the easy way: I increased the text-layer width from 380px to 550px. It did not solve the problem, but gives acceptable output-results.

Thank you for your help.
Hoek is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Oh where oh where can my template file be? george2 How-to Forum 2 10-03-2007 12:34 PM
default template ENTHALPIE How-to Forum 3 11-02-2005 07:21 AM
Awesome Template Slider Feedback & News 1 12-16-2004 09:29 AM
.shtml as a template? sparky How-to Forum 6 09-28-2004 06:13 PM
Enhanced template manfred Mod Submissions 2 09-01-2004 02:00 PM


All times are GMT -8. The time now is 03:40 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2001 - 2005, ThinkDing LLC. All Rights Reserved.