GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Why the hell is there a scrollbar at the bottom of this gallery? (html experts help) (https://gfy.com/showthread.php?t=391718)

Myst 11-21-2004 01:51 AM

Why the hell is there a scrollbar at the bottom of this gallery? (html experts help)
 
www.guyproject.com/john

DX 11-21-2004 01:58 AM

there isn't.

then again, who the hell knows what resolution you're running : )

Myst 11-21-2004 01:58 AM

you using firefox? cause theres one in IE, and ive got 1280x1024 running

SmokeyTheBear 11-21-2004 02:00 AM

its in a frame

http://www.terra.es/personal8/teeniepump/john/

that doesnt have a scroll

Varius 11-21-2004 02:00 AM

Quote:

Originally posted by Myst
you using firefox? cause theres one in IE, and ive got 1280x1024 running
It's due to the frame being set at 100%

You prob have your window slightly smaller than maximum size right? Maximize the window and scrollbar should vanish.....I used IE and same res as you and only see scrollbar if i shrink window (even a tinyyyyyyyyyyy bit) :winkwink:

SmokeyTheBear 11-21-2004 02:01 AM

change the base pages margin to 0 and it will work fine

DX 11-21-2004 02:02 AM

Quote:

Originally posted by Myst
you using firefox? cause theres one in IE, and ive got 1280x1024 running
i'm using IE.. at 1280x1024.. no scrollbars either way.

Myst 11-21-2004 02:02 AM

the thing is, i cant change the frame code..

the domain host adds that in (url forwarding)

SmokeyTheBear 11-21-2004 02:02 AM

Quote:

Originally posted by Varius
It's due to the frame being set at 100%

You prob have your window slightly smaller than maximum size right? Maximize the window and scrollbar should vanish.....I used IE and same res as you and only see scrollbar if i shrink window (even a tinyyyyyyyyyyy bit) :winkwink:


Kind of, its because the frame has the margin set to 0 so the main page has the default margin making it a tad bigger

SmokeyTheBear 11-21-2004 02:03 AM

Quote:

Originally posted by Myst
the thing is, i cant change the frame code..

the domain host adds that in (url forwarding)

You dont need to just set the page that you using to margin=0

Varius 11-21-2004 02:04 AM

Quote:

Originally posted by SmokeyTheBear
Kind of, its because the frame has the margin set to 0 so the main page has the default margin making it a tad bigger
Hey did you ever happen to find a solid "universal" solution to pop windows in both sp1 and sp2 ?

Myst 11-21-2004 02:06 AM

Quote:

Originally posted by SmokeyTheBear
change the base pages margin to 0 and it will work fine
as in in the body tag?

<body margin=0> or is it something in the styles?

SmokeyTheBear 11-21-2004 02:06 AM

Quote:

Originally posted by Varius
Hey did you ever happen to find a solid "universal" solution to pop windows in both sp1 and sp2 ?
Kind of..

see www.earthunplugged.org/aa/

popunder and popexit code for sp1 sp2 and new FIREFOX popup code..

SmokeyTheBear 11-21-2004 02:07 AM

Quote:

Originally posted by Myst
as in in the body tag?

<body margin=0> or is it something in the styles?

I think its topmargin=0 leftmargin=0 rightmargin=0 ?? not quite sure about that but try it..

Varius 11-21-2004 02:07 AM

Quote:

Originally posted by SmokeyTheBear
Kind of..

see www.earthunplugged.org/aa/

popunder and popexit code for sp1 sp2 and new FIREFOX popup code..

Coll I'll check it out, thanks....just need it for our members who wish to automatically launch our chat/IM/webcam system upon login :)

DX 11-21-2004 02:09 AM

redundancy...


for your css....

MARGIN-TOP: 0px;
MARGIN-BOTTOM: 0px;
MARGIN-LEFT: 0px;
MARGIN-RIGHT: 0px;

for your body....

LEFTMARGIN="0"
TOPMARGIN="0"
RIGHTMARGIN="0"
MARGINHEIGHT="0"
MARGINWIDTH="0"
BOTTOMMARGIN="0"

SmokeyTheBear 11-21-2004 02:09 AM

marginheight=0 marginwidth=0

SmokeyTheBear 11-21-2004 02:11 AM

Quote:

Originally posted by Varius
Coll I'll check it out, thanks....just need it for our members who wish to automatically launch our chat/IM/webcam system upon login :)
I would suggest using the flash method then.

It can popup a window using a small flash file , and will work in i.e. and firefox as long as the flash plugin is installed ( default in i.e. i think )

Varius 11-21-2004 02:12 AM

Quote:

Originally posted by SmokeyTheBear
I would suggest using the flash method then.

It can popup a window using a small flash file , and will work in i.e. and firefox as long as the flash plugin is installed ( default in i.e. i think )

Hrm that sounds like a good option, since our new cam/chat/IM interface is being done in Flash (current one is html/javascript for chat/IM and java applet for cam - old but works ok)

SmokeyTheBear 11-21-2004 02:14 AM

Quote:

Originally posted by Varius
Hrm that sounds like a good option, since our new cam/chat/IM interface is being done in Flash (current one is html/javascript for chat/IM and java applet for cam - old but works ok)
http://www.earthunplugged.org/aa/fire.html

use the flash file on that page and embed it like in source

Varius 11-21-2004 02:18 AM

Quote:

Originally posted by SmokeyTheBear
http://www.earthunplugged.org/aa/fire.html

use the flash file on that page and embed it like in source

Thanks....google bar did block that method though, but as long as we can provide it for as many people as possible, it's ok.

The rest can just open it themselves with a click, or allow our site...

Myst 11-21-2004 02:22 AM

didnt work :/

http://www.guyproject.com/john/index2.html

the auto frame generated code is horrible lol

DX 11-21-2004 02:24 AM

i still get no scrollbars in IE... even if i resize the window all the way down til the white is right on the window edges...

Varius 11-21-2004 02:29 AM

Quote:

Originally posted by Myst
didnt work :/

http://www.guyproject.com/john/index2.html

the auto frame generated code is horrible lol

try putting your margin options in the frameset tag instead of the frame tag....

you can also force no scrollbar with scrolling="no" in your frameset tag.

Myst 11-21-2004 02:56 AM

i cant modify any of the frameset code..

Rantan 11-21-2004 02:58 AM

frames and iframes = teh suck

Varius 11-21-2004 03:01 AM

Quote:

Originally posted by Myst
i cant modify any of the frameset code..
isn't the <frameset> tag in your page ? You can modify it...

Myst 11-21-2004 03:21 AM

Quote:

Originally posted by Varius
isn't the <frameset> tag in your page ? You can modify it...
nope, its generated by my domain host - url forwarding

its so i can redirect the domain to another site, and the location bar will still show the domain

bizmak 11-21-2004 11:49 AM

nothing here

Myst 11-21-2004 02:47 PM

suggestions?

Varius 11-21-2004 03:03 PM

Quote:

Originally posted by Myst
suggestions?
What part of the page exactly do you have control over? Could you paste the part of the page you can actually edit ??

Myst 11-21-2004 03:16 PM

i can edit everything except for the main frame source..

ie, go to the site, click View>Source (from the file/edit.. menu) - shows source of main frame source. if you right click, view source in the page, i can edit any of that

Varius 11-21-2004 03:21 PM

Quote:

Originally posted by Myst
i can edit everything except for the main frame source..

ie, go to the site, click View>Source (from the file/edit.. menu) - shows source of main frame source. if you right click, view source in the page, i can edit any of that

Ahh.....then I don't thik you can do much, because the part causing the problem is in here:

<!-- Redirection Services Redirector4C-CHG H1 -->
<frameset rows='100%, *' frameborder=no framespacing=0 border=0>
<frame src="http://www.terra.es/personal8/teeniepump/john/index2.html" name=mainwindow frameborder=no framespacing=0 marginheight=0 marginwidth=0></frame>
</frameset>

no matter what you do in your page, it won't change these things.....perhaps you could use javascript to set the properties of margins in the main page calling the frameset, but I doubt it (you'd have to do some reasearch if margins are settable via javascript)

Otherwise, I don't see any way for you to interact with the outer page. Maybe call your host ? :winkwink:

Myst 11-21-2004 03:24 PM

look at this page though

http://www.guyproject.com/david.html

it loads up fine.. no scrollbar

Varius 11-21-2004 03:24 PM

BTW Myst, you seem to be doing a very nice RPC (revenue per click) of 20 cents with AAC.....

I'd love to get you to try a little traffic once our new site launches next month and we offer the pay-per-email prog (less than a month away now :Graucho )

Myst 11-21-2004 03:27 PM

sounds good - ill try it out :)

Varius 11-21-2004 03:32 PM

Quote:

Originally posted by Myst
look at this page though

http://www.guyproject.com/david.html

it loads up fine.. no scrollbar

Hrm ok, then guess I was wrong it cannot be the frameset code because it's identical on both those links....

Try lowering your width:700px in the CSS at top to like 650, see if the scrollbar vanishes.

I think the main page still has margins, but the difference is the david page above doesnt have the same set width as the page that isnt working right.

Myst 11-21-2004 08:02 PM

that didnt work either :/

Dirty F 11-21-2004 08:05 PM

Wtf, youre loading tera.es in an iframe??? Ahahahahaha

Dude, hosting costs nothing lately...

Myst 11-21-2004 08:09 PM

Quote:

Originally posted by Battuss
Wtf, youre loading tera.es in an iframe??? Ahahahahaha

Dude, hosting costs nothing lately...

lol i know

this is for spamming purposes so i dont get complaints to my host.. although if you know of a spam friendly host im listening :)

Myst 11-21-2004 09:11 PM

oO

Myst 11-21-2004 10:27 PM

Oo

Doctor Dre 11-21-2004 10:28 PM

No scroolbars here

pornguy 11-21-2004 10:31 PM

may be the window size is set at a numeric value > 740px, instead of a percentage, and maybe you're at 800x600 res

pornguy 11-21-2004 10:43 PM

Check your css. You have a class there with 700px.

Myst 11-21-2004 10:59 PM

im on 1280x1024 resolution... if i change that css my page gets completely fucked up

Myst 11-21-2004 11:20 PM

im on 1280x1024 resolution... if i change that css my page gets completely fucked up

Myst 11-22-2004 01:05 AM

oO

Myst 11-22-2004 01:48 AM

im on 1280x1024 resolution... if i change that css my page gets completely fucked up

anyone know what to do about this conundrum?

Myst 11-22-2004 12:54 PM

im on 1280x1024 resolution... if i change that css my page gets completely fucked up

anyone know what to do about this conundrum?


All times are GMT -7. The time now is 01:35 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123