Jump to content
MakeWebGames

Recommended Posts

Posted

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

Posted (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 by lucky3809
Posted (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 by KyleMassacre
Addidtionl info
Posted
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.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...