• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need a little question on CSS Styles Answered very quickly pleeease :(

DannyBoy

Diamond Member
Ok so ive been setting up this little control panel for my girlfriend that allows her to upload / download / view files which are stored on my server while shes at college, seeing as those @rse's wont allow you to use floppy's etc & domain policys have been set.

Now ive been working on all the php scripting and htaccess files + all the other coding malarky, which i have no problem with as i do a lot of it.

My problem is with the CSS styles for this directory listing script i have acquired mysteriously from hotscripts.com 😕

Anyhows i have this line in the CSS Stylesheet:
td{border: 1px; padding:1px 7px; background-color:rgb(255,255,255);}

Now, im used to doing all my colours in hexadecimal codes, not rgb co=ordinates. Basically I want a transparent backround and not a white one.
What would i need to change on this line for a Transparent backround instead of a white backround.

Kinda urgent so would be nice if my princess in dull clothes could help me out stright away 😉

Thanks in advance
Dan 🙂
 
Woooooooooohooooooooooo it worked!!!!! 😀😀

Guess i didnt try that 😕

Yet something so simple and easy to figure out
rolleye.gif


Thanks Pal 🙂

Dan 🙂
 
You know you don't need to use RGB equivalents right?

You can use:

background-color: #ffffff;

OR:

background-color: white;


Or in your case, background-color: transparent;
 
Back
Top