Web Hosting Talk







View Full Version : compare plans page


simple solutions
05-27-2006, 02:52 PM
Would someone do me a small but huge favor?

I need a plans page done. I'm no good with matching colors, but if someone could make just a small table that will match with:

http://simpsolutions.net/plans.html

that would be awesome. I dont need you to do the whole thing, I just want a .css with the colors in it, and just make like...2 rows or something. I can add more and fill in the rest.

I am basically just looking for someone to create a .css and then apply it to about 2 rows of a table. Please match the colors to the site I linked above.

Thanks!

Taylor

ezbnc
05-27-2006, 03:24 PM
This might be better for you to have this moved to like the advertising side but best of luck to you.

simple solutions
05-27-2006, 04:03 PM
ok, ill do that then. thanks!

bluedreamer
05-27-2006, 06:44 PM
I'm feeling generous today, here's some code I had lyimng around....

Add this to your css file...

.planmatrix { width: 100%;}
.row1left { width: 25%; padding: 5px; background-color: #B95E18; color: #FFFFFF; font-weight: bold; }
.row1 { width: 25%; padding: 5px; background-color: #B95E18; color: #FFFFFF; font-weight: bold; text-align: center;}
.row2left { background-color: #F4F0E0; padding: 5px; color: #642409; font-weight: bold; }
.row2 { background-color: #F4F0E0; padding: 5px; color: #642409; font-weight: normal; text-align: center;}
.row3left { background-color: #FFFFFF; padding: 5px; color: #642409; font-weight: bold; }
.row3 { background-color: #FFFFFF; padding: 5px; color: #642409; font-weight: normal; text-align: center;}

.planmatrix defines the table width
.rowXleft defines the left column for your features list
Rows 2 and 3 alternate, just copy/paste code to add new rows.

The table code...

<table cellpadding="0" cellspacing="0" border="0" class="planmatrix">
<tr>
<td class="row1left">Features</td>
<td class="row1">Starter</td>
<td class="row1">Business</td>
<td class="row1">Premoum</td>
</tr>
<tr>
<td class="row2left">Disk space</td>
<td class="row2">100mb</td>
<td class="row2">500mb</td>
<td class="row2">1000mb</td>
</tr>
<tr>
<td class="row3left">Bandwidth</td>
<td class="row3">2gb</td>
<td class="row3">10gb</td>
<td class="row3">20gb</td>
</tr>
<tr>
<td class="row2left">Email</td>
<td class="row2">Unlimited</td>
<td class="row2">Unlimited</td>
<td class="row2">Unlimited</td>
</tr>
</table>

Just tweak the styles to your needs!

Fixago
05-27-2006, 09:45 PM
Here's a site I use sometimes to find color harmonies. I have like three other good ones but somehow my bookmarks are gone :(

http://www.easyrgb.com/harmonies.php

simple solutions
05-27-2006, 11:51 PM
thank you, guys. you are awesome!

Mark S
05-28-2006, 12:09 AM
Here's a site I use sometimes to find color harmonies. I have like three other good ones but somehow my bookmarks are gone :(

http://www.easyrgb.com/harmonies.php
http://colorblender.com/ is also VERY good, IMO.

Jeremy
05-28-2006, 03:13 AM
http://colorblender.com/ is also VERY good, IMO.

nice find looks good