View Full Version : iframes
Arelon
04-20-2006, 02:45 PM
I posted a msg a little bit ago about iframes.. I've got my iframes up and now I have another question(I've searched and can't find exactly what Im looking for) You can adjust your width and height of the iframe and if its to small then it puts scroll bars on. If you disable scroll bars it simply cuts off some off the rest of it. I really dont want the scroll bars so is there a way to resize then entire thing so that it wont cut parts off? If not is there a way to change the scrollbar color? Below is my code. Thanks in advance.
<iframe
src ="http://carnage.bungie.org/halo/HaloQuery.cgi?address=67.19.194.174&port=2302&refresh=50
"
width="600" height="970
"
align="center"
scrolling="no"
frameborder="1"
>
</iframe>
_Aerospace_Eng_
04-20-2006, 03:28 PM
You need javascript to resize the iframes dynamically. http://www.dynamicdrive.com/dynamicindex17/iframessi2.htm
dntget0wned
04-20-2006, 06:15 PM
*edit : this doesn't work *
I have not taken the time to see if this works but you could try it
<iframe
src ="http://carnage.bungie.org/halo/HaloQuery.cgi?address=67.19.194.174&port=2302&refresh=50
"
width="auto" height="auto"
align="center"
scrolling="no"
frameborder="1"
>
</iframe>
oldcrazylegs
04-27-2006, 04:29 PM
in the file you load into your iframe you put something like this to change the scrollbar color.
<STYLE type="text/css">
BODY {scrollbar-3dlight-color:;
scrollbar-arrow-color:;
scrollbar-base-color:;
scrollbar-track-color:;
scrollbar-darkshadow-color:;
scrollbar-face-color:;
scrollbar-highlight-color:;
scrollbar-shadow-color:}
</STYLE>
use this tool to put the colors in there.
http://www.nutrocker.co.uk/scrollbarcolor.html
you don't need all the colors. you can leave some out. i do it this way.
<style type="text/css">
body {
scrollbar-base-color:red;
scrollbar-arrow-color:white;
}
</style>
if you have validated your page in the html/xhtml standards compliant mode you have to use html instead of body like this.
<style type="text/css">
html {
scrollbar-base-color:red;
scrollbar-arrow-color:white;
}
</style>
vBulletin® v3.6.7, Copyright ©2000-2009, Jelsoft Enterprises Ltd.