What's new
Photoshop Gurus Forum

Welcome to Photoshop Gurus forum. Register a free account today to become a member! It's completely free. Once signed in, you'll enjoy an ad-free experience and be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

How do i add borde


http://www.netmechanic.com/news/vol5/css_no5.htm


It doesnt matter, if u tell me how to do it in css or html i will know

There are a number of ways to make a border around your page or images. Using CSS to control the border width is one way. Or, you could use a graphic border with html positioning within tables. Take a look at the link above.

Do a search on the net for "add border with css" MANY hits.

Should get you going in the right direction.

:} Hatch
 
In css I would set te definition in the #wrapper tag it would just be

#wrapper{
border: 1px solid black;
}

this is considering that you are using a wrapper to define the outside limits of your design.

then your html would be

<body>
<div id="wrapper">

the rest of the code here

</div>
</body>


hope this helps
 
how do i make the css border go around my image

I did the css with the #wrapper, but it doesnt wrap around the image. what other border attributes would i have to use to make it wrap around the image?

Bags
 

Back
Top