jack_h Posted August 14, 2008 Report Share Posted August 14, 2008 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 Quote Link to comment Share on other sites More sharing options...
atomant Posted August 16, 2008 Report Share Posted August 16, 2008 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 Quote Link to comment Share on other sites More sharing options...
jack_h Posted August 25, 2008 Author Report Share Posted August 25, 2008 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 Quote Link to comment Share on other sites More sharing options...
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.