![]() |
| Home | Demo | Services | Features | Help | User Forum | Blog | About | |
|
#41
|
|||
|
|||
|
Thanks erne i have been able to learn some new things from there good work nice simple site
Last edited by trackerm; 07-09-2007 at 07:43 AM. |
|
#42
|
|||
|
|||
|
I keep on looking for sites beside w3schools, but I usually get lost with the amount of info available. I really hope there were good learning sits in hebrew, especially regarding rtl languages, that seems to usually cause the most problems.
|
|
#43
|
|||
|
|||
|
I read a post that mentioned Google Adsense. I have several websites and have thought of trying my hand with Google Adsense on one or two that have descent traffic. What is your experience here as far as ease of use/income potential?
Last edited by Arne; 08-03-2007 at 12:13 PM. Reason: No links anywhere until Statcounter is used on the site(s) |
|
#44
|
|||
|
|||
|
Hi, This post of mine is very beneficial and informative, however there are some specific facts or information that I require. If anyone can help me in this matter then please send me a private message. Best Regards,
|
|
#45
|
|||
|
|||
|
was looking at those links a few days ago
trying to learn css here |
|
#46
|
|||
|
|||
|
a quick tip from me is use float:left rather than display:inline, and for anything too complicated use tables (they're not recommended by many experts, but google.com uses them, as does this forum. truth is there's no replacement supported by all major browsers)
|
|
#47
|
|||
|
|||
|
this forum really needs a 10 or 20 post minimum before sig links are enabled
|
|
#48
|
||||
|
||||
|
Thanks Wing Chun,
We're looking into implementing something like that. |
|
#49
|
|||
|
|||
|
Quote:
JP |
|
#50
|
|||
|
|||
|
With the ongoing discussion about table use and the various arguments for and against causing me some confusion, I tried to eliminate them from my new design. Then, I found some very interesting articles and books that argued in their favour and even suggested, sometimes emphatically, that they were on the way back. They also said that using tables with CSS wasn’t too difficult a thing to achieve…. So I read on and discovered that, indeed, “Tables have Class”.
Yes, you can allocate CSS qualities to tables and rows and data cells, very easily. As all that suited my purpose just right I applied it and found that all worked very well and very easily. e,g. For my “Contact us” page – /* Table to hold contact info on Contact Us Page */ table.contact { width: 600px; } table.contact td { border: none; } .contactleftcol { padding: 3px 3px 3px 3px; font-weight: normal; font-size: 80%; text-align: right; vertical-align: middle; line-height: 1.2; color: #711515; width: 110px; } .contactrightcol { font-weight: normal; text-align: left; color: #000; width: 390px; } As applied in my page (there’s some PHP included to redisplay information and error messages) – <table class="contact"> <tr> <td class="contactleftcol" > <span class="text1">Name</span> </td> <td class="contactrightcol"> <input type="text" title="Enter your name" name="name" tabindex="1" value="<?php if (isset($_POST['name'])) { echo "$name"; } ?>" size="45" /> <?php echo "<font color='#ffffff'>$namemess</font>" ?> </td> </tr> The above applies to the Name row e.g. http://www.classic-cameos.com/images/Contact.bmp If anyone wants some more information on this, PM me. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|