reversing page, moving the whole body..., how to move the blog body and etc around |
reversing page, moving the whole body..., how to move the blog body and etc around |
Nov 22 2004, 11:53 PM
Post
#1
|
|
|
-={SDA}=- Fullmember ![]() ![]() ![]() ![]() Group: Member Posts: 110 Joined: Nov 2004 Member No: 65,009 |
ok, so first of all, does anyone know how to reverse the module on the left and right? so that the picture, info, and friends are on the right, and the chatbox is on the left.
next, how do you move the whole site to a location? here's an example. http://www.xanga.com/home.aspx?user=wow_hyper_one it's not taking up the whole screen, instead it take's up a small section of the screen. and it's near the top right. also, on that xanga, how do you make it so that the links are all separated like that? and how do you make the scrollbar transparent? or even gone? like on that xanga, it's gone. you can only scroll when your mouse is in the body. |
|
|
|
![]() |
Nov 23 2004, 12:13 AM
Post
#2
|
|
![]() Um....Its meeee ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 2,218 Joined: Mar 2004 Member No: 8,264 |
1. This is to move the Module to the right
Place in the 'website stats', before anything else CODE <!-- begin code provided by createblog.com --> <script language="Javascript"> // original by sean http://www.xanga.com/seanmeister var tds = document.getElementsByTagName("td"); for (var i = 0; i < tds.length; i++){ if (tds[i].width == "200"){ tds[i].parentNode.appendChild(tds[i].cloneNode(true)); tds[i].parentNode.removeChild(tds[i]); break; }} </script> <!-- end code provided by createblog.com --> 2. Well it depend on the layout. You can relocated with using DIV. Changing it to height, size of the box. etc. 3.Well to separate the links like that, she or he use image map. 4. It just transparent from your div box. Using the right colors to be able to transparent. If need more there a script form here...scrollbar: transparent. CODE <!-- begin code provided by createblog.com --> <style type="text/css"> div { filter:chroma(color=#00FF00); /* here you are defining which color you want to be transparent in your scrollbars */ scrollbar-arrow-color: #000000; scrollbar-face-color: #00FF00; /* transparent */ scrollbar-3dlight-color: #00FF00; /* transparent */ scrollbar-darkshadow-color: #00FF00; /* transparent */ scrollbar-highlight-color: #000000; scrollbar-shadow-color: #000000; scrollbar-track-color: #00FF00; /* transparent */ } </style> <!-- end code provided by createblog.com --> I hope that helps. |
|
|
|
MasterChief16 reversing page, moving the whole body... Nov 22 2004, 11:53 PM
MasterChief16 QUOTE(Jus2s1mp13 @ Nov 23 2004, 12:13 AM)2. W... Nov 23 2004, 09:20 AM
Jus2s1mp13 QUOTEDIV? is that some program?
1. hehe no the di... Nov 23 2004, 03:39 PM
MasterChief16 oh that's pretty cool. well, i got a few more ... Nov 23 2004, 04:29 PM![]() ![]() |