PDA

View Full Version : Need a CSS layout to my needs


tinkertron
01-22-2010, 06:40 AM
1) - Project Details: (be as specific as possible): Basic CSS Layout

2) - Payment Amount: submit your proposal.

3) - Payment method/ details (Paypal, check? Timeline?): PayPal 2 days

4) Additional Info (about project or potential bidders): I'm new to CSS, PHP, MySQL but i'm learning from looking at source codes and reading up on the web. The best way I learn is by studying codes. I'm going to host a online datagrid, but I have several "tabs" that will display multi-pages of grids. One example I grab is hosted on my site http://tdcj.homeip.net/test2.html ... I want to display my website similar to that of Excel look with tabs. I don't want the header to scroll with the body. So what I'm looking for is a small basic CCS file as the one hosted on my current website, but with *//--------------------------------- explaining to me the code ------------//

Fumigator
01-22-2010, 03:43 PM
I'm not going to bid, but just wanted to give a little advice: Don't be afraid to use the <table> tag when displaying grid or tabular data. The <table> tag has been dragged through the mud by web designers because it was used (wrongly) for page layout for so many years, but that doesn't mean it can't be useful, and a spreadsheet-like display is exactly what the <table> tag is for. And, you can style the table using CSS!

Developr
01-22-2010, 09:45 PM
http://www.dynamicdrive.com/style/

hire programmer
01-23-2010, 04:26 AM
How do I ensure that table is displayed properly in all type of monitor settings ?

MMDWebdesign
02-14-2010, 03:47 PM
How do I ensure that table is displayed properly in all type of monitor settings ?

Set the width of the table when you write it. This is an example that I use on my website I use it for my nav bar.

<table width="828" border="0" align="center" cellpadding="0" cellspacing="0">

Fumigator
02-14-2010, 10:43 PM
Set the width of the table when you write it. This is an example that I use on my website I use it for my nav bar.

<table width="828" border="0" align="center" cellpadding="0" cellspacing="0">

Yes but you really should be using CSS in this day and age. These element-level stylings are becoming antiquated fast.