CSS Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsWeb DesignCSS Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 10th, 2006, 10:30 PM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
Expandable Div's with css

I was wondering... how can i make divs expandable so like when there is text that goes over the height limit.. now can i make the div move down abit.. along with the rest of the divs? I have never done this.. and im searching as i go.. so hopefully i can find some results.

html Code:
Original - html Code
    <form action="memo.read.php" method="post">  <div class="memo_container">   <div class="memo_userinfo">    <span class="info">&nbsp;<b />From:</b> <?php print $username; ?></span>    <span class="userdata"><?php print $icq . $aim; ?></span>   </div>   <div class="memo_subject"><span class="span" valign="bottom"><i>Subject: <?php print "{$rtv_memo['subject']} - {$rtv_memo['date']}"; ?></i></span></div>   <div class="memo_contents"><span class="message"><?php print $rtv_memo['message']; ?></span></div>   <div class="memo_buttons" align="right"><input type="submit" name="delete" value="Delete"><input type="submit" name="reply" value="Reply">&nbsp;</div>  </div> </form>


css Code:
Original - css Code
  1.  
  2. /* Starting Memo Div Classes */
  3.  
  4. div.memo_container {
  5.    position:    relative;
  6.    margin-left: 20px;
  7.    width:       580px;
  8.    height:      432px;
  9. }
  10.  
  11. div.memo_subject {
  12.    position:      absolute;
  13.    border-top:    1px solid #cccccc;
  14.    border-right:  1px solid #cccccc;
  15.    left:          152px;
  16.    width:         425px;
  17.    height:        20px;
  18.    background:    #ffffff;
  19. }
  20.  
  21. div.memo_subject .span {
  22.    position:       absolute;
  23.    padding-left:   8px;
  24.    margin-top:     8px;
  25.    height:         10px;
  26.    word-wrap:      break-word;
  27.    font-family:    arial,helvetica;
  28.    color:          #00000c;
  29.    font-size:      72%;
  30. }
  31.  
  32. div.memo_userinfo {
  33.    position:    absolute;
  34.    float:       left;
  35.    border:      1px solid #cccccc;
  36.    width:       150px;
  37.    height:      150px;
  38.    word-wrap:   break-word;
  39.    white-space: wrap;
  40.    background:  #d8d9d7;
  41. }
  42.  
  43. div.memo_userinfo .info {
  44.    position:     absolute;
  45.    padding-left: 2px;
  46.    margin-top:   8px;
  47.    font-size:    88%;
  48. }
  49.  
  50. div.memo_userinfo .userdata {
  51.    position:     absolute;
  52.    top:          130px;
  53.    padding-left: 2px;
  54.    font-size:    88%;
  55. }
  56.  
  57. div.memo_contents {
  58.    position:      absolute;
  59.    float          right;
  60.    border-right:  1px solid #cccccc;
  61.    border-bottom: 1px solid #cccccc;
  62.    border-top:    1px solid #cccccc;
  63.    left:          150px;
  64.    top:           20px;
  65.    width:         427px;
  66.    height:        130px;
  67.    word-wrap:     break-word;
  68.    white-space:   wrap;
  69. }
  70.  
  71. div.memo_contents .message {
  72.    position:       absolute;
  73.    padding-left:   10px;
  74.    margin-top:     2px;
  75. }
  76.  
  77. div.memo_buttons {
  78.    position:      absolute;
  79.    top:           152px;
  80.    width:         577px;
  81.    height:        25px;
  82.    border-right:  1px solid #cccccc;
  83.    border-left:   1px solid #cccccc;
  84.    border-bottom: 1px solid #cccccc;
  85.    background:    #ffffff;
  86. }
  87.  
  88. div.memo_buttons input {
  89.    height: 22px;
  90.    margin-top:     2px;
  91. }
So far everything here works.. but just needed to know if it is possiable what i am asking.

Reply With Quote
  #2  
Old April 11th, 2006, 12:23 AM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,831 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 1 Day 19 h 19 m 2 sec
Reputation Power: 4192
Sounds like you want to use min-height.

Only elements related to <table>s have a valign attribute.
It's best to avoid using the align attribute on <div>s; use CSS instead.
__________________
Spreading knowledge, one newbie at a time. I'm available for hire at Dynamic Site Solutions.

Check out my blog. | Learn CSS. | PHP includes | X/HTML Validator | CSS validator | Common CSS Mistakes | Common JS Mistakes

Remember people spend most of their time on other people's sites (so don't violate web design conventions).

Reply With Quote
  #3  
Old April 11th, 2006, 12:32 AM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
Quote:
Originally Posted by Kravvitz
Sounds like you want to use min-height.

Only elements related to <table>s have a valign attribute.
It's best to avoid using the align attribute on <div>s; use CSS instead.
I tried using css to align the buttons to the right.. but for some reason it didnt work.. unless i did something wrong i used vertical-align: right, but i will give it a shoot again....

Reply With Quote
  #4  
Old April 11th, 2006, 07:44 AM
icantthinkofone icantthinkofone is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Posts: 427 icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level)icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level)icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level)icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level)icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level)icantthinkofone User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 3 Days 50 m 22 sec
Warnings Level: 10
Number of bans: 1
Reputation Power: 42
There is no vertical-align:right. You use that to vertically align things.
Quote:
<b />From:</b>
That's not right. Get rid of the slash in the first <b>

Reply With Quote
  #5  
Old April 11th, 2006, 10:22 AM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
Quote:
Originally Posted by icantthinkofone
There is no vertical-align:right. You use that to vertically align things. That's not right. Get rid of the slash in the first <b>
No that's correct I'm planing on implementing XHTML on this.. but first i need to get it right

Reply With Quote
  #6  
Old April 11th, 2006, 04:47 PM
wolfcry911 wolfcry911 is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Mar 2006
Location: MA
Posts: 170 wolfcry911 User rank is Sergeant (500 - 2000 Reputation Level)wolfcry911 User rank is Sergeant (500 - 2000 Reputation Level)wolfcry911 User rank is Sergeant (500 - 2000 Reputation Level)wolfcry911 User rank is Sergeant (500 - 2000 Reputation Level)wolfcry911 User rank is Sergeant (500 - 2000 Reputation Level) 
Time spent in forums: 2 Days 5 m 49 sec
Reputation Power: 23
no, it's not correct. xhtml only needs a closing slash on single tag elements (hr, br, meta, link, img) - but you shouldn't be using a presentational tag to begin with!

to answer your question - do nothing. Use static positioning and default div behavior which will expand to contain it's in flow children. Lose the relative and absolute positioning and learn to work with the document flow.

Reply With Quote
  #7  
Old April 11th, 2006, 07:49 PM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
hmm i though i added <br /> not <b /> umm.. ok.. that is my mistake.. on my script its.. <br /> not <b />, weird.. but.. anyways.. i dont use div's im learning to use them now... but anyways.. your saying that i should just make it static width and height? if so.. then no i need it expandable.. there has to be a way of doing it... if i can't find an answer here.. then i guess i will keep trying and post back when I have it.. else.. when what exactly do you mean?

Last edited by xlordt : April 11th, 2006 at 07:54 PM.

Reply With Quote
  #8  
Old April 11th, 2006, 10:07 PM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,831 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 1 Day 19 h 19 m 2 sec
Reputation Power: 4192
Don't use absolute positioning. Just use margins and floats and give the elements min-height instead of height.

Reply With Quote
  #9  
Old April 11th, 2006, 10:48 PM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
Quote:
Originally Posted by Kravvitz
Don't use absolute positioning. Just use margins and floats and give the elements min-height instead of height.
Ok, i will try that.

Reply With Quote
  #10  
Old April 12th, 2006, 12:43 AM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonders.
Posts: 5,573 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1Folding Points: 111202 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 1 Month 11 h 9 m 33 sec
Reputation Power: 406
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook MySpace
Quote:
Originally Posted by Kravvitz
Don't use absolute positioning. Just use margins and floats and give the elements min-height instead of height.
Ok i see what you mean now... but i think i didn't explain my self correctly what i exactly want.. sorry for this... let me try again.... here is what I'm trying to achieve..

Now Lets say.. i have a left, right, bottom div inside a div's container.... now if the left div was to go over its max min-height there for it shall move down correct? ( Ya thanx for that min-height ) now.. what if i wanted the right div to move down as well.. also as you can see here the bottom div should be able to move down as well. Now that is what I'm trying to do.. Forgive my lack of explanation as I'm really frustrated and sick ( high fever, yet i cant keep in bed ).

Reply With Quote
  #11  
Old April 12th, 2006, 01:46 AM
Kravvitz's Avatar
Kravvitz Kravvitz is offline
CSS & JS/DOM Adept
Dev Shed God 30th Plane (19500 - 19999 posts)
 
Join Date: Jul 2004
Location: USA
Posts: 19,831 Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level)Kravvitz User rank is General 48th Grade (Above 100000 Reputation Level) 
Time spent in forums: 6 Months 1 Day 19 h 19 m 2 sec
Reputation Power: 4192
You'll need to clear the floats. I suggest you put the bottom div inside the container and give it clear:both.

You may want to use one of these two techniques as well:
http://www.alistapart.com/articles/fauxcolumns/
http://www.positioniseverything.net...out/equalheight

In other situations where an element isn't already there where you need floats to be cleared, I recommend clearing options 1 and 2 listed on this page.
More information:
http://garyblue.port5.com/webdev/floatdemo.html
http://www.quirksmode.org/css/clearing.html

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignCSS Help > Expandable Div's with css

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap