transparent entry box, question |
transparent entry box, question |
Mar 3 2006, 03:36 AM
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 105 Joined: Jan 2005 Member No: 78,654 |
Ok i want to make my blog entries backgrounds transparent so that you are still able to see through to the background. i've searched the scripts and i get this code
CODE <!-- start code provided by createblog.com --> <STYLE> /* transparent blog */ .blogbody, { /* opacity maximum 100 */ filter: alpha(style=0,opacity=60); } </STYLE> <!-- end code provided by createblog.com --> ok i am not for sure where to put the color code i want for the background. as is it makes it black. help? also where did the script to move the left side modules to the right go? i'm completely lost with this new layout. |
|
|
|
![]() |
Mar 3 2006, 07:27 AM
Post
#2
|
|
![]() say maydayism. ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Staff Alumni Posts: 7,447 Joined: Jun 2004 Member No: 26,344 |
The Xanga scripts are currently being transferred, so here is the code for moving the default left modules to the right:
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 --> ^ place in website stats. As for customizing the background colour of your blog area, copy and paste this into your header -> input your own header HTML: CODE <style type="text/css"> table.blogbody { background-color: #FF0000; } </style> ^ change FF0000 to the hex code of the colour you want. |
|
|
|
Mar 3 2006, 03:24 PM
Post
#3
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 105 Joined: Jan 2005 Member No: 78,654 |
thanks a bunch. i've not been on the site in a while and the new arrangements are a little aggrivating.
|
|
|
|
Mar 3 2006, 04:06 PM
Post
#4
|
|
|
Senior Member ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Member Posts: 3,551 Joined: Feb 2005 Member No: 102,857 |
Topic Closed.
|
|
|
|
![]() ![]() |