Jump to content
  • 0

div-ы - граница компонента тянется вниз


zaero
 Share

Question

Доброго времени суток, уважаемые знатоки css.

При верстке у меня возникла довольно странная проблема. Описать ее непросто, но я постараюсь.

Шаблон сайта сверстан в 3 колонки с помощью div-ов. При открытии одного из компонентов в FireFox, Chrome или Opera происходит довольно странная вещь - главная область компонента растягивается вниз так, чтобы нижний конец стал вровень с нижней границей правой или левой колонки. При этом в IE все отображается как надо.

Проблема в картинках:

Вот как это выглядит в IE (как оно должно выглядеть):

1287091554-54e36-109kb.png

Нижняя граница компонента заканчивается там, где кончается текст компонента. Нижние границы правой и левой колонки ни на что не влияют.

А вот как это выглядить в FireFox, Chrome или Opera (моя печаль):

1287091554-cfa08-83kb.png

Нижняя граница компонента растянута так, чтобы совпадать с нижней границей правой колонки. Если я добавлю в правую колонку еще модули - граница растянется еще ниже. При добавлении модулей в левую колонку, поведение аналогично.

Подскажите пожалуйста, в чем может быть проблема?

заранее благодарен.

Прошу прощения за портянку, спойлеры вставить не получилось.

Фрагмент HTML:

<div id="maincontent">
<?php if (mosCountModules('left', -3)){ ?>
<div id="left_out">
<?php mosLoadModules('left', -3); ?>
</div>

<?php } ?>
<?php if (mosCountModules('right', -3)){ ?>
<div id="right_out">
<?php mosLoadModules('right', -3); ?>
</div>
<?php } ?>

<div id="content_out<?php echo $contentwidth; ?>">
<?php if (mosCountModules('user1', -2) or mosCountModules('user2', -2) ){ ?>
<div class="user_bg">
<div class="user_left">
<div class="user_right">
<?php if (mosCountModules('user1', -2)){ ?>
<div class="topmodule_user<?php echo $topuserwidth; ?>">
<div class="user_inside1">
<?php mosLoadModules ( 'user1', -2); ?>
</div>
</div>
<?php } ?>
<?php if (mosCountModules('user2', -2)){ ?>
<div class="separator"></div>
<div class="topmodule_user<?php echo $topuserwidth; ?>">
<div class="user_inside">
<?php mosLoadModules ( 'user2', -2); ?>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<?php } ?>

<div id="content">
<div id="content_border_right">
<div id="content_border_left">
<div id="content_bottom_right">
<div id="content_bottom_left">
<?php mosMainBody(); ?>
</div>
</div>
</div>
</div>
</div>
</div>

</div>

Фрагмент CSS:

#maincontent {
padding: 0px 16px;

}
#left_out {
width: 188px;
float: left;
padding: 0;
margin: 0;
}
#right_out {
width: 182px;
float: right;
padding: 0;
margin: 0;
}
#left_out ul, #left_out li, #right_out ul, #right_out li {
list-style-type: none;
padding: 0;
margin: 0;
}
#left_out ul.menu li a,
#left_out ul.menu li#current a,
#left_out a.mainlevel,
#right_out ul.menu li a,
#right_out ul.menu li#current a,
#right_out a.mainlevel {
display: block;
height: 25px;
line-height: 25px;
background-repeat: no-repeat;
background-position: left;
width: 172px;
font-size: 12px;
!important;
font-weight: normal;
text-indent: 20px;
!important;
}
#left_out ul.menu a:hover,
#right_out ul.menu a:hover,
#left_out a.mainlevel:hover,
#right_out a.mainlevel:hover,
#left_out #active_menu,
#right_out #active_menu,
#left_out ul.menu li#current a,
#right_out ul.menu li#current a {
background-image: url(../images/mainlevel_over.gif);
text-decoration: none;
background-repeat: no-repeat;
background-position: left;
color: #000000; !important;
}
#left_out a.sublevel,
#left_out ul.menu li#current li a,
#left_out ul.menu li li a,
#left_out ul.menu li li#current a,
#left_out ul.menu li li#current li a,
#left_out ul.menu li li li a,
#right_out a.sublevel,
#right_out ul.menu li#current li a,
#right_out ul.menu li li a,
#right_out ul.menu li li#current a,
#right_out ul.menu li li#current li a,
#right_out ul.menu li li li a {
background-repeat: no-repeat;
height: 20px;
line-height: 20px;
background-position: left;
text-indent: 20px;
!important;
border: none;
display: block;
}
#left_out a.sublevel#active_menu,
#right_out a.sublevel#active_menu,
#left_out a.sublevel:hover,
#right_out a.sublevel:hover,
#left_out ul.menu li#current li a,
#left_out ul.menu li li#current a,
#left_out ul.menu li li#current li a,
#right_out ul.menu li#current li a,
#right_out ul.menu li li#current a,
#right_out ul.menu li li#current li a,
#left_out ul.menu li#current a:hover,
#right_out ul.menu li#current a:hover,
#left_out ul.menu li li a:hover,
#right_out ul.menu li li a:hover{
text-decoration: none;
background-repeat: no-repeat;
background-position: left;
color: #000000; !important;
}
#left_out .module,
#right_out .module,
#left_out .moduletable,
#right_out .moduletable,
#left_out .module_menu,
#right_out .module_menu,
#left_out .module_text,
#right_out .module_text {
background-repeat: repeat-y;
margin-top: 5px;
}
#left_out .module div,
#right_out .module div,
#left_out .moduletable div,
#right_out .moduletable div,
#left_out .module_menu div,
#right_out .module_menu div,
#left_out .module_text div,
#right_out .module_text div {
background-position: bottom;
background-repeat: no-repeat;
width: 182px
}
#left_out .module div div,
#right_out .module div div,
#left_out .moduletable div div,
#right_out .moduletable div div,
#left_out .module_menu div div,
#right_out .module_menu div div,
#left_out .module_text div div,
#right_out .module_text div div {
background-position: top;
background-repeat: no-repeat;
}
#left_out .module div div div,
#right_out .module div div div,
#left_out .moduletable div div div,
#right_out .moduletable div div div,
#left_out .module_menu div div div,
#right_out .module_menu div div div,
#left_out .module_text div div div,
#right_out .module_text div div div{
background: none;
padding: 5px 5px 10px 5px;
overflow: hidden;
width: 172px;
}
#left_out .module div div div div,
#right_out .module div div div div,
#left_out .moduletable div div div div,
#right_out .moduletable div div div div,
#left_out .module_menu div div div div,
#right_out .module_menu div div div div,
#left_out .module_text div div div div,
#right_out .module_text div div div div {
padding: 0;
}
#left_out h3,
#right_out h3 {
height: 35px;
width: 172px;
background-repeat: no-repeat;
color: #FFFFFF;
line-height: 35px;
text-indent: 20px;
padding: 0;
margin: 0 0 5px 0;
font-size: 14px;
font-weight: bold;
}
#content_outleft,
#content_outmiddle,
#content_outright {
margin: 0 0 10px 0;
padding-top: 5px;
}
#content_outleft {
margin: 0 0 0 188px;
}
#content_outmiddle {
margin: 0 188px;
}
#content_outright {
margin: 0 188px 0 0;
}
#content {
background-repeat: repeat-x;
background-position: bottom;
width: 100%;
}
#content_border_left {
background-repeat: repeat-y;
background-position: top left;
}
#content_border_right {
background-repeat: repeat-y;
background-position: top right;
}
#content_bottom_right {
background-repeat: no-repeat;
background-position: bottom right;
}
#content_bottom_left {
background-repeat: no-repeat;
background-position: bottom left;
padding: 3px 5px 5px 5px;
}

Edited by zaero
Link to comment
Share on other sites

22 answers to this question

Recommended Posts

  • 0

А можно html, который генерится? Ctrl+U в FF, например.

ЗЫ. А спойлеры ставятся тэгами

[spoiler][/spoiler]

. В расширеной форме справа (Боковая панель) под смайлами пункт "скрытый текст".

Edited by Kaylang
Link to comment
Share on other sites

  • 0

<?xml version="1.0"?><!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>
<title>Просто так! - Принято просто так! - Ирина Арсентьевна - СПАСИБО</title>
<meta name="description" content="Здесь ничего не продают и не покупают! Здесь дарят просто так!" />
<meta name="keywords" content="просто так бесплатно подарок даить благотворительность добротворцы доброе дело" />
<meta name="Generator" content="Joomla! - Авторские права (C) 2005-2008 OSM. Все права защищены." />
<meta name="robots" content="index, follow" />
<link href="http://prosto-tak.tomsk.ru/components/com_jcomments/tpl/default/style.css" rel="stylesheet" type="text/css" />
<script src="http://prosto-tak.tomsk.ru/components/com_jcomments/js/jcomments-v2.0.js" type="text/javascript"></script>
<script src="http://prosto-tak.tomsk.ru/components/com_jcomments/libraries/joomlatune/ajax.js" type="text/javascript"></script>
<script type='text/javascript'>
/*<![CDATA[*/
var jax_live_site = 'http://prosto-tak.tomsk.ru/index.php';
/*]]>*/
</script><script type="text/javascript" src="http://prosto-tak.tomsk.ru/mambots/system/pc_includes/ajax.js"></script>

<link rel="stylesheet" href="http://prosto-tak.tomsk.ru/components/com_adsmanager/css/adsmanager.css" type="text/css" />
<link rel="alternate" type="application/rss+xml" title="Ирина Арсентьевна - СПАСИБО" href="http://prosto-tak.tomsk.ru/index2.php?option=com_jcomments&task=rss&object_id=8696&object_group=com_adsmanager&no_html=1" />
<link rel="shortcut icon" href="http://prosto-tak.tomsk.ru/favicon.ico" />

<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />

<link href="http://prosto-tak.tomsk.ru/templates/sunshine/css/template.css" rel="stylesheet" type="text/css"/>
<link href="http://prosto-tak.tomsk.ru/templates/sunshine/css/blue.css" rel="stylesheet" type="text/css"/>

<link rel="shortcut icon" href="http://prosto-tak.tomsk.ru/images/favicon.ico" />


<!--[if lte IE 6]>
<style type="text/css">
.contentpane { width: 99%; }
#left_out .module div div div, #right_out .module div div div { width: 177px; }
</style>
<![endif]-->

<!--
author: Fio
web: http://www.vonfio.de
copyright: Creative Commons Attribution-Share Alike 3.0 Unported License
--><link href="css/template_css.css" rel="stylesheet" type="text/css" />
</head>

<body>

<script src="http://prosto-tak.tomsk.ru/modules/wz_tooltip.js" language="JavaScript" type="text/javascript">
</script>


<div id="left_border">
<div id="right_border">
<div id="bottom">
<div id="bottom_right">
<div id="bottom_left">

<div id="container">
<div id="header">
</div>
<div id="banner_out">
<div id="banner_in">
<!-- <div class="sitetitle">Просто так!</div>-->
</div>
</div>

<!-- Область баннера -->

<div id="blue_left_border">
<div id="blue_right_border">
<div id="blue_bottom">
<div id="blue_bottom_right">
<div id="blue_bottom_left">
<div id="Div1">

<div id="blue_banner_out">

<div id="blue_topmenu_out">
<div id="blue_topmenu_left">

<div id="blue_topmenu_right">

<div id="own_topmenu">

<table BORDER="0" CELLPADDING = "0" CELLSPACING = "0" width = "100%">
<tr>
<td ALIGN = "left">

</td>

<td ALIGN = "right" >

<!-- Metka-Bx - BannerCodeStart -->

<script LANGUAGE="JavaScript"><!--
random = parseInt(Math.random()*10000)
banner = '<iframe src=\"http://bx.metka.ru/cgi-bin/468/engine.cgi?'
banner += 'a4078;' + random + ';1;\" frameborder=0 width=468 height=60 marginwidth=0 marginheight=0 scrolling=no>'
banner += '<A href=\"http://bx.metka.ru/468/go.php3?'
banner += 'id=a4078&pg='+escape(window.location.href)+'-' + random + '\"><IMG alt=\"Metka-Bx\" border=0 '
banner += 'width=468 height=60 src=\"http://bx.metka.ru/cgi-bin/468/engine.cgi?'
banner += 'a4078;'+escape(window.location.href)+'-' + random + ';0;\" border=0></A></iframe>'
document.write(banner)
// --></script>
<NOSCRIPT>
<IFRAME src="http://bx.metka.ru/cgi-bin/468/engine.cgi?a4078;1;1;" frameborder="0" width="468" height="60" marginwidth="0" marginheight="0" scrolling="no"><a
href="http://bx.metka.ru/468/go.php3?id=a4078&pg=1"><img
alt="Metka-Bx" border="0" width="468" height="60"
src="http://bx.metka.ru/cgi-bin/468/engine.cgi?a4078;1;0;"></a></IFRAME>
</NOSCRIPT>
<!-- Metka-Bx - BannerCodeEnd -->


</td>
</tr>
</table >

</div>
</div>

</div>
</div>

</div>

</div>
</div>
</div>
</div>
</div>
</div>

<!-- Конец области баннера -->


<!-- Область случайной цитаты -->
<div id="Div2">
<div id="Div3">
<div id="Div4">
<div id="Div5">
<div id="Div6">
<div id="Div7">

<div id="blue_banner_out_random">

<div id="Div8">

<div id="Div9">
<div id="Div10">

<div id="own_topmenu_random">

<!-- Metka-Bx - BannerCodeEnd -->
<div class="moduletable">
<b>!!! ВНИМАНИЕ !!! Малышу требуется срочная помощь! Более подробная информация - в последней новости.</b>
</div>
</div>
</div>

</div>
</div>

</div>

</div>
</div>
</div>
</div>
</div>
</div>

<!-- Конец области случайной цитаты -->


<div id="topmenu_out">
<div id="topmenu_left">
<div id="topmenu_right">
<div id="topmenu">
<div class="moduletable">
<table width="100%" border="0" cellpadding="0" cellspacing="1"><tr><td nowrap="nowrap"><a href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&Itemid=36" class="mainlevel" id="active_menu">Просто так!</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_content&task=blogcategory&id=1&Itemid=30" class="mainlevel" >Новости</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_content&task=view&id=7&Itemid=41" class="mainlevel" >О проекте</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_rules&Itemid=36" class="mainlevel" >Правила</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_content&task=view&id=9&Itemid=44" class="mainlevel" >ЧаВо</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_all&Itemid=36" class="mainlevel" >Поиск</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_fireboard&Itemid=40" class="mainlevel" >Форум</a><a href="http://prosto-tak.tomsk.ru/index.php?option=com_content&task=view&id=46&Itemid=54" class="mainlevel" >Помощь проекту</a></td></tr></table> </div>

</div>
</div>
</div>
</div>

<div id="maincontent">
<div id="left_out">
<div class="module">
<div>
<div>

<div>
<form action="http://prosto-tak.tomsk.ru/index.php" method="post" name="login" >

<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>
<label for="mod_login_username">
Пользователь </label>
<br />

<input name="username" id="mod_login_username" type="text" class="inputbox" alt="username" size="10" />
<br />
<label for="mod_login_password">
Пароль </label>
<br />
<input type="password" id="mod_login_password" name="passwd" class="inputbox" size="10" alt="password" />
<br />
<input type="checkbox" name="remember" id="mod_login_remember" class="inputbox" value="yes" alt="Remember Me" />

<label for="mod_login_remember">
Запомнить меня </label>
<br />
<input type="submit" name="Submit" class="button" value="Войти" />
</td>
</tr>
<tr>
<td>

<a href="http://prosto-tak.tomsk.ru/index.php?option=com_registration&task=lostPassword">
Забыли пароль?</a>
</td>
</tr>
<tr>
<td>
Вы не зарегистрированы. <a href="http://prosto-tak.tomsk.ru/index.php?option=com_registration&task=register">
Регистрация</a>

</td>
</tr>
</table>

<input type="hidden" name="option" value="login" />
<input type="hidden" name="op2" value="login" />
<input type="hidden" name="lang" value="russian" />
<input type="hidden" name="return" value="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_ad&adid=8696&catid=44&Itemid=36" />
<input type="hidden" name="message" value="0" />
<input type="hidden" name="force_session" value="1" />

<input type="hidden" name="j75ab0bf3252de480f49794bfbd019898" value="1" />
</form>
</div>
</div>
</div>
</div>
<div class="module">
<div>
<div>

<div>
<h3>Благие дела</h3><a href="/index.php?option=com_content&task=view&id=133">Добротворцы, помогающие детским домам и благотворительным организациям</a> </div>
</div>
</div>
</div>
</div>
<div id="right_out">

<div class="module">
<div>
<div>
<div>
<h3>Добротворцы</h3><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3693">Lyolya - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3693"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3620">tak70 - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3620"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4180">GALKA - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4180"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=632">Avalon - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=632"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=769">dedumanet - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=769"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3146">Bella - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3146"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3990">2QRF - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3990"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=147">бинго - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=147"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=2219">мой Ромашка - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=2219"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4384">Sipsik - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4384"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=581">noll - 100%</a><br/><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=581"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/></a><br /> </div>

</div>
</div>
</div>
<div class="module">
<div>
<div>
<div>
<h3>Новость</h3><!-- DGM News Ultra Pluse Lite 2.2 created by Denys Nosov [Joomla! Ukraine - http://www.joomla-ua.org], 2007 -->

<div class="dgm_list_firstnews">
<div class="dgm_img">
</div>
<div class="dgm_news">
<a href="http://prosto-tak.tomsk.ru/index.php?option=com_content&task=view&id=829&Itemid=30" >!ВНИМАНИЕ! Нужна срочная помощь малышу!</a><br />
<span class="small">
| <br />
<i></i>Administrator<br />

01.10.2010 </span>
<br />
<br />
</div>
</div><span style="text-align:right;font-size:9px;border-bottom: 1px solid #eee;display: block;line-height: 10px;width: 100%;clear: both;" class="ju_m"><a href="http://www.joomla-ua.org" style="color: #ccc;" title="Joomla! Ukraine" target="_blank" >Joomla! Ukraine</a></span>
<!-- End module --> </div>
</div>
</div>

</div>
</div>

<div id="content_outmiddle">

<div id="content">
<div id="content_border_right">
<div id="content_border_left">
<div id="content_bottom_right">
<div id="content_bottom_left">

<table BORDER="0" CELLPADDING = "0" CELLSPACING = "0" width = "100%">

<tr>
<td ALIGN = "center">
<!--Баннер от вебрекламы-->
<div id='effad_slot_138538693763979'></div>
<script>
window.effad_slots = window.effad_slots || [];
window.effad_slots.push('138538693763979');
</script>
<!--Конец баннера от вебрекламы-->
</td>
</tr>
</table >

<div class="adsmanager_pathway">

<a href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&Itemid=36">Главная</a> <img src="http://prosto-tak.tomsk.ru/components/com_adsmanager/images/arrow.png" alt="arrow" /> <a href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_category&catid=44&text_search=&order=0&expand=0&Itemid=36">Принято просто так!</a> </div>



<div class="adsmanager_ads">
<div class="adsmanager_top_ads">
<h2 class="adsmanager_ads_title">
<b></b>Ирина Арсентьевна - СПАСИБО<br /> </h2>
<div>

Отправить личное сообщение / Просмотреть все объявления от <a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&tab=AdsManagerTab&user=4180&Itemid=36'><b>GALKA</b></a> </div>
<div class="adsmanager_ads_kindof">
<b></b> </div>
</div>
<div class="adsmanager_ads_main">
<div class="adsmanager_ads_body">
<div class="adsmanager_ads_desc">

<b></b>Ирина Арсентьевна !!!Большое ВАМ спасибо за красивые цветы!!!Ваше добро восполнится!У ВАС всё будет ХОРОШО!!!<br />Состояние: Новьё!<br /> </div>
<div class="adsmanager_ads_price">
<b>Город: </b>Томск<br /> </div>
<div class="adsmanager_ads_contact">
<b>Контакты:<br/></b>Контактное лицо: Галина<br /><br /> </div>

</div>
<div class="adsmanager_ads_image">
<a href='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8696b.jpg' target='_blank'><img src='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8696b_t.jpg' alt='Ирина Арсентьевна - СПАСИБО' /></a> </div>


<!--Рейтинг в объявах!-->
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/prototype.lite.js"></script><script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/moo.ajax.js"></script><script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/rating.js"></script><table border="0" width="80%"><tr><td><strong>Рейтинг добротворца: </strong></td><td> <span onclick="getdetails('4180', '0', '90.188.117.161', 1 , '20')" style="cursor:pointer;"><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/><tr><td><strong>Благодарностей: </strong></td><td> 147</td><td></td></tr></table><br /><div id="details"></div>
<div class="adsmanager_spacer"></div>
</div>


</div>
<div class="back_button">
<a href='java script:history.go(-1)'>
Назад </a>
</div>
<!-- КОмменты!!!-->
<script type="text/javascript">
var jcomments=new JComments(8696, 'com_adsmanager','http://prosto-tak.tomsk.ru/index2.php?option=com_jcomments&no_html=1&Itemid=36');
jcomments.setList('comments-list');
</script>
<div id="jc">

<div id="comments"><h4>Комментарии<a class="rss" href="http://prosto-tak.tomsk.ru/index2.php?option=com_jcomments&task=rss&object_id=8696&object_group=com_adsmanager&no_html=1" title="RSS лента комментариев этой записи." target="_blank"> </a><a class="refresh" href="#" title="Обновить список комментариев" onclick="jcomments.showPage(8696,'com_adsmanager',0);return false;"> </a></h4>
<div id="comments-list" class="comments-list">
<div class="even" id="comment-item-12808"><div class="rbox"><div class="rbox_tr"><div class="rbox_tl"><div class="rbox_t"> </div></div></div><div class="rbox_m">
<div class="comment-avatar"><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4315&Itemid=38"><img src="http://prosto-tak.tomsk.ru/components/com_jcomments/images/no_avatar.png" alt="" border="0" /></a></div>
<div class="comment-box avatar-indent">
<a class="comment-anchor" href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_ad&adid=8696&Itemid=36#comment-12808" id="comment-12808">#2</a>
<span class="comment-author">ИА_</span>
<span class="comment-date">2010-10-14 18:27</span>
<span class="comment-body" id="comment-body-12808">Спасибо всем за добрые слова! Пусть у вас в домах будет всегда тепло, уютно и свежо!</span>
<span class="comments-buttons">
</span></div><div class="clear"></div>

</div><div class="rbox_br"><div class="rbox_bl"><div class="rbox_b"> </div></div></div></div>
</div>
<div class="odd" id="comment-item-12806"><div class="rbox"><div class="rbox_tr"><div class="rbox_tl"><div class="rbox_t"> </div></div></div><div class="rbox_m">
<div class="comment-avatar"><a href="http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4328&Itemid=38"><img src="http://prosto-tak.tomsk.ru/images/comprofiler/4328_4cb6e8d93f62d.jpg" alt="" border="0" /></a></div>
<div class="comment-box avatar-indent">
<a class="comment-anchor" href="http://prosto-tak.tomsk.ru/index.php?option=com_adsmanager&page=show_ad&adid=8696&Itemid=36#comment-12806" id="comment-12806">#1</a>
<span class="comment-author">Polina</span>
<span class="comment-date">2010-10-14 18:11</span>
<span class="comment-body" id="comment-body-12806">присоединяюсь к пожеланиям!!! спасибо Вам большое за цветы!!!</span>
<span class="comments-buttons">
</span></div><div class="clear"></div>
</div><div class="rbox_br"><div class="rbox_bl"><div class="rbox_b"> </div></div></div></div>

</div>
</div>
<div id="comments-list-footer"><a class="refresh" href="#" title="Обновить список комментариев" onclick="jcomments.showPage(8696,'com_adsmanager',0);return false;">Обновить список комментариев</a><br /><a class="rss" href="http://prosto-tak.tomsk.ru/index2.php?option=com_jcomments&task=rss&object_id=8696&object_group=com_adsmanager&no_html=1" target="_blank">RSS лента комментариев этой записи.</a></div>
</div>
<div id="comments-footer" align="center"><a href="http://www.joomlatune.ru" title="JComments" target="_blank">JComments</a></div>
<script type="text/javascript">
jcomments.setAntiCache(1,0,0);
</script>
</div>


<table BORDER="0" CELLPADDING = "0" CELLSPACING = "0" width = "100%">
<tr>
<td ALIGN = "center">

<!--Баннер от вебрекламы-->
<div id='Div11'></div>
<script>
window.effad_slots = window.effad_slots || [];
window.effad_slots.push('138538714234762');
</script>
<!--Конец баннера от вебрекламы-->
</td>
</tr>
</table >

</div>
</div>

</div>
</div>
</div>
</div>

</div>
<div class="clr"></div>

<div class="clr"></div>
<div id="user_bottom">
<div class="user_bg">

<div class="user_left">
<div class="user_right">
<div class="bottom_user4">
<div class="user_inside1">
<div class="moduletable">
<h3>
Кто он-лайн </h3>
<div class="small">Сейчас на сайте:<br />Гостей - 7 и пользователей - 21 </div><br><div class='mod_login'>

<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4604' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">Alysher</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=1175' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">AZ19Lora</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=226' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn226_4aee0aa0b549c.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">BRecordss</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3957' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">Evgesha_55</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4419' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">glory</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=5381' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">karina1989</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3159' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">katt</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4177' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">lipa70</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=5308' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn5308_4caffeacef49c.gif>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">maax</a>,

<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=2423' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn2423_4c434cea217e5.gif>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">mamba</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4892' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">Martens</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3941' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn3941_4c8a3b692959d.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">munecabrava</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4040' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">nevesta</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=3367' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">qwerty8082</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=635' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">ufoss</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4457' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn4457_4c9099103188e.gif>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">Unstopable</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=5437' class='mod_login' onmouseover="Tip('<img src=components/com_comprofiler/images/english/tnnophoto.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">vovkas</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4573' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn4573_4c76a7b07c3e4.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">ZX_Lost_Soul</a>,

<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=4163' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn4163_4c3db0bfbabe2.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">Лида</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=2219' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn2219_4cb594448656a.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">мой Ромашка</a>,
<a href='http://prosto-tak.tomsk.ru/index.php?option=com_comprofiler&task=userProfile&user=1748' class='mod_login' onmouseover="Tip('<img src=images/comprofiler/tn1748_4c2608df3f82f.jpg>', SHADOW, true, BGCOLOR, '#C3C3C3', BORDERCOLOR, '#FDC5E0', FADEIN, 400, FADEOUT, 400)">мышка</a>
</div>

</div>
</div>
</div>
</div>
</div>

</div>
</div>

</div>
</div>
</div>
</div>

<!-- Область баннера -->

<div id="Div12">

<div id="Div13">
<div id="Div14">
<div id="Div15">
<div id="Div16">
<div id="Div17">

<div id="Div18">

<div id="Div19">
<div id="Div20">
<div id="Div21">


<div id="Div22">

<table BORDER="0" CELLPADDING = "0" CELLSPACING = "0" width = "100%">
<tr>
<td ALIGN = "left">
<a href="http://tw.tomsk.ru"> <img src="images/TWBanner.gif" border=0></a>
</td>

<td ALIGN = "right" >

<!-- Metka-BX - BannerCodeStart -->
<script LANGUAGE="JavaScript"><!--
random = parseInt(Math.random()*10000)
banner = '<iframe src=\"http://bx.metka.ru/cgi-bin/468_lite/engine.cgi?'
banner += 'a877;' + random + ';1;\" frameborder=0 width=468 height=60 marginwidth=0 marginheight=0 scrolling=no>'
banner += '<A href=\"http://bx.metka.ru/468_lite/go.php3?'
banner += 'id=a877&pg='+escape(window.location.href)+'-' + random + '\"><IMG alt=\"Metka-BX\" border=0 '
banner += 'width=468 height=60 src=\"http://bx.metka.ru/cgi-bin/468_lite/engine.cgi?'
banner += 'a877;'+escape(window.location.href)+'-' + random + ';0;\" border=0></A></iframe>'
document.write(banner)
// --></script><NOSCRIPT><IFRAME src="http://bx.metka.ru/cgi-bin/468_lite/engine.cgi?a877;1;1;" frameborder="0" width="468" height="60" marginwidth="0" marginheight="0" scrolling="no"><a
href="http://bx.metka.ru/468_lite/go.php3?id=a877&pg=1"><img
alt="Metka-BX" border="0" width="468" height="60"
src="http://bx.metka.ru/cgi-bin/468_lite/engine.cgi?a877;1;0;"></a></IFRAME></NOSCRIPT>

<!-- Metka-BX - BannerCodeEnd -->
</td>
</tr>
</table >


</div>
</div>
</div>
</div>

</div>

</div>

</div>
</div>
</div>
</div>
</div>

<!-- Конец области баннера -->


<div id="footer">

<div id="copy">© 2009 Просто так! | Лаборатория безобразий Zed'a</div>



<div id="othermenu">
<div id="othermenu_in">
</div>
</div>

<div id="copy_own">

<!-- Статистика от гугля -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-12886295-1");
pageTracker._trackPageview();
} catch(err) {}</script>
<!-- Конец статистики от гугля -->

<!-- Catalog.Metka.Ru Counter Code Begin -->

<a href="http://catalog.metka.ru/"><img src="http://catalog.metka.ru/counter/counter.php?id=1246124247&im=1&tp=1" border=0 alt="CATALOG.METKA.RU" width=88 height=31></a>
<!-- Catalog.Metka.Ru Counter Code End -->

<!-- tbe.tom.ru Counter Code Begin -->
<span style="margin:0;padding:0" id="tbec"><script type="text/javascript">//<![CDATA[
setTimeout(function(){var s=document.createElement("SCRIPT");s.type="text/javascript";s.src="http://tbe.tom.ru/?a=prosto-tak.tomsk.ru&js=1&c=0&s=8031&rnd="+(new Date().getTime());document.documentElement.firstChild.appendChild(s);},1)//]]></script></span><noscript><a href="http://tbe.tom.ru"><img src="http://tbe.tom.ru/?a=prosto-tak.tomsk.ru&c=0&s=8031" alt="TBE" title="place hosts/hits users_online" style="border:0" /></a></noscript>
<!-- tbe.tom.ru Counter Code End -->

<!-- Nirvana Counter Code Begin -->
<a href="http://nirvana.tomsk.ru/stat/prosto-tak.tomsk.ru"><img src="http://nirvana.tomsk.ru/counter?prosto-tak.tomsk.ru;1" width=88 height=31 border=0></a>
<!-- Nirvana Counter Code End -->

<!-- T-SK Counter Code Begin -->

<a href="http://top.T-sk.ru/detailed/prosto-tak.tomsk.ru.html"><img src="http://top.t-sk.ru/image.php?host=prosto-tak.tomsk.ru&vtype=4&ctype=1" width="80" height="31" title="Томск - Рейтинг сайтов" alt="Томск" style="border:0" /></a>
<!-- T-SK Counter Code End -->

</div>
<!-- begin of Top100 code -->
<script id="top100Counter" type="text/javascript" src="http://counter.rambler.ru/top100.jcn?1986268"></script><noscript><img src="http://counter.rambler.ru/top100.cnt?1986268" alt="" width="1" height="1" border="0"/></noscript>
<!-- end of Top100 code -->

</div>
</div>
</div>

<!--Помощник баннеров от вебрекламы-->
<script>
var script = document.createElement('script');
script.src = 'http://tomsk.effad.ru/effad.js';
script.type = 'text/javascript';
document.getElementsByTagName('head')[0].appendChild(script);
</script>
<!--Конец помощника баннеров от вебрекламы-->

</body>
</html>
<!-- 1287115772 -->

Вот. Прошу прощения за еще одну портянку - как видите, тег "спойлер" не помогает.

Div класс который растягивается до нижней границы правой колонки:

<div class="adsmanager_ads">

Edited by zaero
Link to comment
Share on other sites

  • 0
<!--Рейтинг в объявах!-->
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/prototype.lite.js"></script>
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/moo.ajax.js"></script>
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/rating.js"></script>
<table border="0" width="80%">
<tr>
<td>
<strong>Рейтинг добротворца: </strong>
</td>
<td>
<span onclick="getdetails('4180', '0', '90.188.117.161', 1 , '20')" style="cursor:pointer;">
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
!!!— Мне кажется или здесь не хватает закрывающего тега </td> ? —!!!
<tr>
<td>
<strong>Благодарностей: </strong>
</td>
<td>
147
</td>
<td></td>
</tr>
</table>

Edited by Kaylang
Link to comment
Share on other sites

  • 0

Закрывающий </td>, как и </tr>, ни на что влиять не должен, они опциональны (в том языке, по которому страница отображается фактически, а не в том, который в доктайпе, конечно, и если в этом месте и предполагалась новая строка). А так понять что-либо сложно, в такой череде вложенных дивов и слон запутается. Но навскидку можно попробовать дать компоненту отдельный контекст форматирования (напр., задав ему overflow: hidden или float+ширину)...

Edited by SelenIT
Link to comment
Share on other sites

  • 0
Закрывающий </td>, как и </tr>, ни на что влиять не должен, они опциональны (в том языке, по которому страница отображается фактически, а не в том, который в доктайпе, конечно, и если в этом месте и предполагалась новая строка).
В XHTML закрывающий тег требуется всегда и везде.
тут

ЗЫ. В дивах ошибок не заметил. Вроде все на месте. Конечно было бы интереснее смотреть страницу с помощью FireBug'а или Web Developer'а.

Edited by Kaylang
Link to comment
Share on other sites

  • 0
!!!—  Мне кажется или здесь не хватает закрывающего тега </td> ? —!!!

Да вы правы, закрывающих тегов не хватает. Однако проблема к сожалению не в этом - я сохнанил html, доставил недостающие теги руками и открыл снова. Проблема по прежнему присутствует - в FireFox, Chrome и Opera компонент тянется до низа правой колонки. В IE как и раньше, все отображается как надо. :(

Может существует какое-то хитрое свойство у div'a, о существовании которого я не подозреваю?

Edited by zaero
Link to comment
Share on other sites

  • 0

Попробуй убрать всю эту часть:

				   <!--Рейтинг в объявах!-->
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/prototype.lite.js"></script>
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/moo.ajax.js"></script>
<script type="text/javascript" language="javascript" src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/js/rating.js"></script>
<table border="0" width="80%">
<tr>
<td>
<strong>Рейтинг добротворца: </strong>
</td>
<td>
<span onclick="getdetails('4180', '0', '90.188.117.161', 1 , '20')" style="cursor:pointer;">
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>
<img src="http://prosto-tak.tomsk.ru/components/com_comprofiler/plugin/user/plug_cbrating/image/thumbup.gif" border="0" alt=""/>

<tr>
<td>
<strong>Благодарностей: </strong>
</td>
<td> 147</td>
<td></td>
</tr>
</table><br />
<div id="details"></div>
<div class="adsmanager_spacer"></div>

На рабочем на хостинге эта проблема есть? Если да, то можно ссылку?

ЗЫ. Удалил, сорри не заметил один див.

ЗЗЫ. Все-таки я бы обернул дивы adsmanager_ads_body и adsmanager_ads_image дивом-контейнером, а также отдельным дивом-контейнером скрипты и таблицу.

Edited by Kaylang
Link to comment
Share on other sites

  • 0

Аллилуйя, проблема решена!

Все дело в диверсионном css параметре:

	clear: both;

Как вычислил: после удаления строки

 
<div class="adsmanager_spacer"></div>

растягивание исчезло, но и кнопка "Назад" улетела вверх. Пошел смотреть css класс "adsmanager_spacer". Выглядит вот так:

.adsmanager_spacer {	
clear: both;
}

Поменял на

.adsmanager_spacer {	
clear: none;
}

и растягивание исчезло (при отсутствии компонента комментариев).

Такую же операцию произвел с css компонента комментариев и все заработало как надо.

Огромное вам спасибо за помощь!

Link to comment
Share on other sites

  • 0
В XHTML закрывающий тег требуется всегда и везде.

Да. Но сабжевая страница — мягко говоря, не совсем XHTML. Будь она действительно XHTML, она бы вообще не отобразилась. Поэтому я и дописал ремарку в скобках.

Все дело в диверсионном css параметре

Точнее, в том, что этот элемент и проблемная колонка принадлежат к одному контексту форматирования (как я, в общем, и предполагал). А должны к разным, тогда никто никому мешать не будет.

Link to comment
Share on other sites

  • 0
Я бы обернул дивы adsmanager_ads_body и adsmanager_ads_image дивом-контейнером и перенес adsmanager_spacer внутрь контейера после adsmanager_ads_image.

Див-контейнер это

<div></div>

верно?

Но если я делаю вот так:

<div class="adsmanager_ads_main">
<!--контейнер-->
<div>
<div class="adsmanager_ads_body">

<div class="adsmanager_ads_desc">
<b></b>Отдам тональник. Maybelline affinitone. светленький. 09. колпачек правда пожульканый.<br />Состояние: Хорошее<br /> </div>
<div class="adsmanager_ads_price">
<b>Город: </b>Томск<br /> </div>
<div class="adsmanager_ads_contact">
<b>Контакты:<br/></b>Контактное лицо: Полина<br /><br /> </div>

</div>
<div class="adsmanager_ads_image">
<a href='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8717a.jpg' target='_blank'><img src='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8717a_t.jpg' alt='Тональник' /></a><a href='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8717b.jpg' target='_blank'><img src='http://prosto-tak.tomsk.ru/images/com_objmanager/pics/8717b_t.jpg' alt='Тональник' /></a> </div>


<div class="adsmanager_spacer"></div>
</div>

</div>

то результат прежний - нижняя граница тянется вниз :(

Link to comment
Share on other sites

  • 0
Покажи стили adsmanager_ads_body и adsmanager_ads_image.

div.adsmanager_ads_body {
float: left;
width: 67%;
}

div.adsmanager_ads_image {
border: 1px solid #FFFFFF;
float: left;
width:30%;
padding: 5px;
text-align : center;
}

div.adsmanager_ads_image a{
display : block;
margin-top: 10px;
}

div.adsmanager_ads_image a img{
border: none;
}

Link to comment
Share on other sites

  • 0
Пропиши диву-контейнеру маргины и паддинги 0 и overflow:hidden.

И покажи стили <div id="details"></div>

После добавления диву-контейнеру маргины-паддинги 0 и overflow:hidden все стало отображаться как надо.

Вы правы, мое решение поменять стиль "clear: both" на "clear: none" в корне неверно. Обнаружил аналогичную проблему у другого компонента, и после попытки исправить стили выглядеть он стал весьма печально. Вылечил аналогично - обрамлением в див-контейнер.

Огромное вам человеческое спасибо за помощь!

ЗЫ. Стили для <div id="details"></div> еще нужны? :)

Edited by zaero
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy