Announcement
Collapse
No announcement yet.
Scrollbar present at bottom of main forum page - how do I remove?
Collapse
X
-
Your redirect domain is putting your actual site in a frame. Maybe that's the problem.
-
Originally posted by ErwinYour redirect domain is putting your actual site in a frame. Maybe that's the problem.
However when I go to http://belizeculture.com which is forwarding/masking to the domain above, it works perfectly except for the right scroll bar to the bottom. There is no site within a frame.
I have another site forewarded/masked:
http://belizebiz.com
http://belizeyellow.com
and this problem is not encountered. I am running a different program there: MYSQL Links.
I have not tried altering table widths or anything like that. I wonder what will happen when I try to customise the board so I can insert an advertising box on the right hand side.
Regards
Comment
-
I think it is a bug in vb3
Originally posted by JwoodallI did a global forum search here on: scrollbar bottom remove -- no results.
I run the forum in a frame and this seems that it is the problem.
first I thought I have made a mistake in my frameset but I tried different tests and only VB3 put the horizontal scrollbar in the bottom.
And this only when the forum display a vertical scrollbar.
It must be an bug. Did you find anythink in the buglist?
Regards from Germany
André
you can see it on my beta: http://69.57.133.190
Then "Forum" at the right top
Then click on "Alfa Forum Testboard" (view from the biginning!!!)
Comment
-
Originally posted by Scott MacVicar
thanks a lot
@Jwoodall
to fix it, add this in your headinclude (in Style Manager) between: "$style[css]" and "-->":
html {
overflow-x: hidden;
}
so that it look like:
<style type="text/css">
<!--
$style[css]
html {
overflow-x: hidden;
}
-->
</style>
Regards
André
Comment
-
Originally posted by Scott MacVicar
Regards
Comment
-
Originally posted by alfisti.netCiao Scott,
@Jwoodall
to fix it, add this in your headinclude (in Style Manager) between: "$style[css]" and "-->":
html {
overflow-x: hidden;
}
so that it look like:
<style type="text/css">
<!--
$style[css]
html {
overflow-x: hidden;
}
-->
</style>
Regards
André
<style type="text/css">
<!--
$style[css]
html {
overflow-x: hidden;
}
-->
</style>
Comment
-
I wish I could. The redirect is owned by someone else, and they've already paid up (I tried to convince them to buy the name and park it on my host).
I've found if I just tell people to use lol.compbuddy.com instead of www.legionoflions.com it works fine.
FYI, it also works fine using Firebird (too bad about the long initial start time though).
So yeah, it's an IE bug.
Comment
-
For me the solution was simple. After spending about 6 hours searching for a solution, it was right in front of me. It was very simple, I had to change my frameset coding.
From:
<frameset rows="109,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="top_frame_new.htm" name="topFrame" scrolling="NO" noresize >
<frameset cols="159,*" frameborder="no" border="0" framespacing="0">
<frame src="left_frame_new.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="homepage_new.htm" name="mainFrame">
</frameset>
</frameset>
To:
<frameset rows="109,*" cols="*" frameborder="no" border="0" framespacing="0">
<frame src="top_frame_new.htm" name="topFrame" scrolling="NO" noresize >
<frameset cols="159,*" frameborder="no" border="0" framespacing="0">
<frame src="left_frame_new.htm" name="leftFrame" scrolling="NO" noresize>
<frame src="homepage_new.htm" name="mainFrame" scrolling="yes">
</frameset>
</frameset>
========================
On the mainFrame it needed 'scrolling="yes"' where most HTML editors don't include, it assumes default of "auto" and leaves it out.
WOOOOOOOO HOOOOOOOOOOOOO!!!!
Comment
Related Topics
Collapse
-
by SamNicholsonFirstly, why on earth is it called the forum module when it displays the latest topics, and subscriptions? It doesn't even display any forums...
So from the site editor I do...-
Channel: Support Issues & Questions
Tue 7 May '13, 4:22am -
-
by WhiskeyOSSI used the page creating tool and now I need to remove that page how do I do it I did not see a way to remove it. ?
-
Channel: Support Issues & Questions
Tue 11 Dec '12, 5:32pm -
Comment