August 14, 200818 yr hey all, im in the middle of updating my website though have came across a small problem. my background is an image though the borders on the tables are block colours and therefore stand out. would there be a way of writing the border colour as transparent or of setting the border colour as an image e.g. border=http://www.picture.com/address thanks Jack
August 16, 200818 yr Jack, Is your site all coded in HTML or does it use CSS. If so, you can change the border attribute to read border:none; and that will turn it off if you don't have a css file, put the code below in after the <head> tag. <head> <style type="text/css"> p { border: none; } </style> This will turn off all borders for any paragraphs you assign in your code. So, it will look like this... <html> <head> <style type="text/css"> p { border: none; } </style> </head> <body> <p>This text will have no border around it</p> </body> </html> If you cannot get it working, give me details of the website and I will sort it for you
August 25, 200818 yr Author cheers for the help if you want to see my site it can be found HERE its a bit of a work in progress and only the home page is done in the new look Jack
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.