onlyaguy Posted July 2, 2012 Posted July 2, 2012 this is gunna sound really nooby but iv kinda forgotten how to change the coulrs of a table. How to change the line colour is what i want to know so can someone help pleas :) iv only just started learning php so would really appreciate the help thanks Quote
lucky3809 Posted July 2, 2012 Posted July 2, 2012 (edited) this is gunna sound really nooby but iv kinda forgotten how to change the coulrs of a table. How to change the line colour is what i want to know so can someone help pleas :) iv only just started learning php so would really appreciate the help thanks line around it: <table style="border:#000 solid 1px;"> background: <table style="background:#000;"> edit: its not really php it's css Edited July 2, 2012 by lucky3809 Quote
KyleMassacre Posted July 2, 2012 Posted July 2, 2012 (edited) line around it: <table style="border:#000 solid 1px;"> background: <table style="background:#000;"> edit: its not really php it's css Thats html If you wanted it css it should be a little something like this: [css] Table { border:1px solid red; } [/css] Something like that Take a gander Edit* If you use lucky's post it will only affect that particular table if you use css it will affect all tables unless other wise specified in html Edited July 2, 2012 by KyleMassacre Addidtionl info Quote
lucky3809 Posted July 2, 2012 Posted July 2, 2012 Thats html If you wanted it css it should be a little something like this: [css] Table { border:1px solid red; } [/css] Something like that Take a gander Edit* If you use lucky's post it will only affect that particular table if you use css it will affect all tables unless other wise specified in html it is html (<table>) (style=blah) is css he said A table so i was assuming he only wanted one table with it, if he said he wanted tables then i would have provided him what you have. Quote
onlyaguy Posted July 2, 2012 Author Posted July 2, 2012 it was only for the one table but thanks :) Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.