i have found a javascript that will put round corners on my tables. which i need to use for my memberinfo pages, so users who customize their profile colors can still cutomize their entire profile. rather than using images to make the corners/edges on tables round, in which case user's couldn't customize it completely.
here is a link
http://www.ruzee.com/blog/ruzeeborders
my predicament is that the code i found makes you choose fixed colors for the tables or make them transparent, which would make using this pointless. the only way to fix this would be to have other alternative tables set in there rather than fixed colors.
meaning i'd need this code:
HTML Code:
myborder: {
border: 2px solid red;
background: blue;
padding: 10px;
}
to change into this type of code:
Code:
myborder: {
border: BORDER SET IN VBULLETIN CSS VARIABLES;
background: ALTERNATIVE TABLE 1;
padding: 10px;
}
but since i don't have any java knowledge, i don't know how to do this. is this even possible? if so, somebody please tell me how.
the attachment shows what tables...