CSS Table Help
Posted: 07 September 2005 02:57 AM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2005-09-07

I recently added a new CSS code to my xanga to create transpert tables. However, when I did that, I noticed certain objects just started to dissapear, or got cut off. If you look at the picture bellow, you can see whats going wrong, the comment box is suppused to be bigger and not cut off.

http://img259.imageshack.us/img259/4705/cutoff8ze.jpg


here’s the code…do you see anything wrong with it? If you need to go to my website and check it out directly, the URL is http://www.xanga.com/hajjmaster

<style type=“text/css”>
table, td { background-color:004080; border:none; border-width:5;}
body { background-color:004080; }
table, tr, td{background-color:transp;border:5px;padding:5}
body{background-color:C2C2C2; }
/* cursors */
body{cursor: crosshair;}

/*scroll bar*/
body
{scrollbar-face-color:000000;
scrollbar-shadow-color:666666;
scrollbar-highlight-color:666666;
scrollbar-3dlight-color:333333;
scrollbar-darkshadow-color:000000;
scrollbar-track-color:333333;
scrollbar-arrow-color:003366;}

/*background attributes*/
body{background-image:url(http://img265.imageshack.us/img265/2724/fluorescence61024x76814zq.jpg);
background-attachment:fixed;
background-repeat: no-repeat;
background-position:center;
background-color:FFFFFF;}
table, td, textarea, a, body, input{background-color:transparent;border:none;border-width:0}

/*Table & Border attributes*/
table table table {border:10px}
table table{border:1px solid; border-color: transp; padding:1; background-color:15212d; filter:alpha(opacity=90); -moz-opacity:0.8; opacity:0.8; -khtml-opacity:5.8;}
table table table table{border:5px}
</style>

Any help would be greatly appreciated

Profile
 
 
Posted: 25 December 2010 10:08 PM   [ Ignore ]   [ # 1 ]
Newbie
Rank
Total Posts:  6
Joined  2010-12-22

Can’t find any bug in your code,xanga might not support this-that cant be a problem.

Profile
 
 
Posted: 26 December 2010 11:56 PM   [ Ignore ]   [ # 2 ]
Newbie
Rank
Total Posts:  2
Joined  2010-12-26
cssdemon - 25 December 2010 10:08 PM

Can’t find any bug in your code,xanga might not support this-that cant be a problem.

i second that

Profile
 
 
Posted: 07 January 2011 02:54 PM   [ Ignore ]   [ # 3 ]
Jr. Member
RankRank
Total Posts:  39
Joined  2010-10-06

Try that:

.2 {
cursor
auto;
background-color#000000;
font-family"Century Gothic";
font-size16px;
font-stylenormal;
font-weightbold;
font-variantnormal;
color#00FF00;
filterAlpha(Opacity=100);
}

The table containing 
"this is a test" has this class. My sugestion was 
to alter the background into transparent 
and get rid of the declaration 
filter
: ...

So it would look like:

.
.2 {
background
transparent;
font-family"Century Gothic";
font-size16px;
font-weightbold;
color#0F0;
Profile