Sorry, I have sent private message somebody))) I'm at first on Google groups, clicked not that button)
So, of course, I have tried FireBug and even IE8 Developer tool. Here is my layout code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <? echo $html->css('reset'); ?> <? echo $html->css('style'); ?> </head> <body> <div id="top_header"> <div id="menu"> <a class="menu" href="/users">Пользователи</a> | <a class="menu" href="../unlimited_tariffs/" id="tariffs">Тарифы</a> | <a class="menu" href="/tariffs">Логи</a> </div> <div id="product_information_top"><b>BILLiWall</b> system 0.1<br>© Pavlo Zarichniy, Mykyta Bykovskiy<br>Kherson, Ukraine. 2009</div> </div> <div id="top_menu"> <div class="top_menu_button"></div> </div> <div id="content"> <?php echo $content_for_layout ?> </div> </body> </html> here my css-code: body { font: 12px Verdana; padding: 0px; margin: 0px; } /* Шапка */ #top_header { height: 81px; background: url('../img/header.png'); margin: 5px; border: 1px solid #80b3ff; position: relative; } #menu { float: left; margin-top: 25px; margin-left: 5px; padding: 5px; } #product_information_top { float: right; font: 11px Verdana; text-align: right; padding: 3px; } #top_menu { text-align: center; } A.menu { font-size: 20px; color: #fffc00; } here my view-code: <table> <tr> <th>Название тарифного плана</th> <th>Upload (Kb/s)</th> <th>Download (Kb/s)</th> <th>Стоимость</th> </tr> <? foreach ($unlimited_tariffs as $unlimited_tariff): ?> <tr> <td><? echo $unlimited_tariff['UnlimitedTariff']['name'] ?></td> <td><? echo $unlimited_tariff['UnlimitedTariff']['upload_speed'] ?></ td> <td><? echo $unlimited_tariff['UnlimitedTariff']['download_speed'] ? ></td> <td><? echo $unlimited_tariff['UnlimitedTariff']['value'] ?></td> </tr> <? endforeach ?> </table> I have alse "reset.css". This css makes everithing zero-value. So, problem can't be there :) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
