Hey guys,
I tried to add this to my custom CSS but it didn't work.
.table {
border: none;
}
Do you know how I can make the table border disappear on:
http://www.nexusenergycenter.org/energy-huntsville/
Thanks,
Daniel
Fetching latest tweet ...
Hey guys,
I tried to add this to my custom CSS but it didn't work.
.table {
border: none;
}
Do you know how I can make the table border disappear on:
http://www.nexusenergycenter.org/energy-huntsville/
Thanks,
Daniel
Put code in between backtick (`) characters. It's usually located above the Tab key on your keyboard.
Try:
.table td {
border: none;
}
td is short for "table date", i.e., a cell. This is where your borders are coming from.
Isolated with Firebug in about 3 seconds! Try it!
This topic has been closed to new replies.