Border graphics and skinning

This is a discussion on "Border graphics and skinning" within the Web Page Design section. This forum, and the thread "Border graphics and skinning are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Jun 13th, 2007, 02:27
Junior Member
Join Date: May 2007
Location: Orange County
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Border graphics and skinning

I finished the HTML and CSS tutorials on HTMLDog.com but I'm still lost as to how to add images and such for borders like on this site. Or just to ad a small solid colored border to the entire site. Can anyone help me with this?

Thanks in advance,
Nightmare
Reply With Quote

  #2 (permalink)  
Old Jun 13th, 2007, 09:48
Junior Member
Join Date: May 2007
Location: london
Age: 26
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Border graphics and skinning

Hi Nightmare


I am a bit confuse in what you are tying to say.
Try this code for now.

Code: Select all
<img src="xxx.jpg" height="xxx" width="xxx" alt="The name of the image">
added border

Put this insite you style tag.
Code: Select all
img{border-width: 2px;
border-color: red;
border-style: solid;}
<notagz1>

Last edited by karinne; Jun 13th, 2007 at 13:02. Reason: Please use [code]...[/code] tags when displaying code!
Reply With Quote
  #3 (permalink)  
Old Jun 13th, 2007, 13:04
karinne's Avatar
SuperMember

SuperMember
Join Date: Jan 2007
Location: You know where
Age: 31
Posts: 4,617
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Border graphics and skinning

That site wouldn't load for me so I couldn't see what you want but ... depending on how your site is coded, there is a multitude of ways to put a border around your site.

One would be to add a wrapper div

Code: Select all
#wrapper {
    border: 1px solid #000;
}
Code: Select all
...
<body>
<div id="wrapper">
 .....

</div>
</body>
...
Reply With Quote
Reply

Tags
border, help, skinning

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Border around images? Bradfordp26 Web Page Design 3 Mar 27th, 2008 13:11
Skinning Zencart christopher Graphics and 3D 7 Sep 22nd, 2006 02:54
Free Graphics site looking for link exchange with another graphics website! mgcom Link Building and Link Sales 6 Aug 19th, 2006 12:51
Why only one border? timmytots Web Page Design 1 Nov 30th, 2005 21:32
Netscape/Mozilla - skinning those scrollbars! gwx03 Web Page Design 15 Apr 8th, 2004 19:37


All times are GMT. The time now is 08:56.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43