hi
i know how to use iframes but how do i get them to show like thinkhabbos do for example as mine currently show the scrollbar and everything whereas thinkhabbos just show 2 black arrows
how is that done?
Printable View
hi
i know how to use iframes but how do i get them to show like thinkhabbos do for example as mine currently show the scrollbar and everything whereas thinkhabbos just show 2 black arrows
how is that done?
Its called CSS. Learn it or use this trusty site : http://www.csscreator.com/version1/
Enjoy.
ok but how do i make the changes to the iframe
you insert the css into the iframe in the <HEAD> section.
could you write me a code for the iframe as what thinkhabbo has is exactly what i need as my sites got the same colour scheme
yeh thinkhabbo.comQuote:
Originally Posted by additional
Just change the hex codesCode:<STYLE type=text/css>
BODY {
SCROLLBAR-FACE-COLOR: #5d683e;
SCROLLBAR-HIGHLIGHT-COLOR: #5d683e;
SCROLLBAR-SHADOW-COLOR: #8b9375;
SCROLLBAR-3DLIGHT-COLOR: #8b9375;
SCROLLBAR-ARROW-COLOR: #8b9375;
SCROLLBAR-TRACK-COLOR: #8b9375;
SCROLLBAR-DARKSHADOW-COLOR: #5d683e;
}
</STYLE>
Put this is your iframe doc.
Thats the basic page without the writing and stuff, hope it helped.HTML Code:<html>
<head>
<title></title>
<style>
body { scrollbar-arrow-color:#000000; scrollbar-track-color:#ffffff; scrollbar-face-color:#ffffff; scrollbar-highlight-color:#ffffff; scrollbar-3dlight-color:#ffffff; scrollbar-darkshadow-color:#ffffff; scrollbar-shadow-color:#ffffff;</style>
</head>
<body bgcolor="#ffffff">
</body>
</html>
Same as mine.
But mine is laid out better:P
Just change the hex codes
#000000 For white
#FFFFFF For Black
I think:s