Jump to content

Setting Up A Site


jack_h
 Share

Recommended Posts

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

Link to comment
Share on other sites

 

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 :thumbup:

Link to comment
Share on other sites

 
  • 2 weeks later...
 

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.

Loading...
 Share

×
  • Create New...