FYI - to give you an example & to confirm even more about what Cd& stated:
http://www.fredmiranda.com
Corey
Main Topics
Browse All TopicsThis probably is an easy question, but it means a lot for me. So I am raising the points that are rewarded for those who can kindly help me out.
Here is MY web site that needs the Bevel Table border to make it look better:
http://www.photozo.com/for
Note that the current border around the different blocks such Board Navigation, Board Contents, Recent Topics etc are almost a plain line, and I would like to have something that looks like the table border in this web page:
http://www.fredmiranda.com
I like the border styles that is used in the above a lot. One is used around the block, and the other is used around the random pictures. If anyone could help me to write the css code to make these border styles, I'd greatly appreciate it. It doesn't have to be exactly the same (probably better not be the same), as long as it looks great on my site and match my color theme.
Another example is here: http://www.dpreview.com/fo
I greatly appreciate your kind help. Please let me know if you have any questions.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
FYI - to give you an example & to confirm even more about what Cd& stated:
http://www.fredmiranda.com
Corey
pengrus, we can make something like it, but much simplier and square bordered if not achieved by graphics. here's what i use:
<head>
<style>
td{border-left: 1px solid #336699; border-top: 1px solid #336699; border-bottom: 1px solid #001733; border-right: 1px solid #001733; background-color: #003366;}
</style>
</head>
<body>
<table width="100%"><tr><td>Test<
</body>
The different border styles which you can use with CSS are:
* none
* dotted
* dashed
* solid
* double
* groove
* ridge
* inset
* outset
While you won't be able to get quite the same effect as you want - as everyone else has already said you need to use graphics for that :) - you can make your borders a little more interesting. :)
For more information check out:
CSS border-style:
http://www.w3schools.com/c
CSS borders (in general):
http://www.w3schools.com/c
Business Accounts
Answer for Membership
by: COBOLdinosaurPosted on 2003-07-13 at 17:08:25ID: 8913726
Those borders are not done with CSS they are sets of images. I looks nice unless you chage screen size or resolution and realize the that kind of design to totally inflexible.
If you want something like that, you will need to start working with a graphics program to develop the look you want and creating all the small graphic necessary to implement it.
Cd&