height:100% на 170рх
но почему так случилось всеровно не пойму. Так же остаеться второй вопрос в силе
если об этом месте речь, то его логотип создаёт
Так же остаеться второй вопрос в силе
можете в личку стукнуть, помогу поправить — есть несколько вариантов
height:auto !important;
float:left;
position:relative;
width:200px;
margin-right:15px;
margin-bottom:15px;
border:solid 1px #C3D6DF;
padding:15px;
border-radius:8px;
-moz-border-radius:8px;
}
height:100%;
float:left;
position:relative;
width:200px;
margin-right:15px;
margin-bottom:15px;
border:solid 1px #C3D6DF;
padding:15px;
border-radius:8px;
-moz-border-radius:8px;
}
Скорее всего смотрите файл шаблона.
Strict Standards: Declaration of p_copy_link::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_copy_link/plugin.php on line 79
В профиле пользователей вот это:
Strict Standards: Declaration of p_profile_bar::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_profile_bar/plugin.php on line 74
Strict Standards: Declaration of p_udacha::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_udacha/plugin.php on line 161
Strict Standards: Declaration of p_podmig::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_podmig/plugin.php on line 108
Strict Standards: Declaration of p_link2video::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_link2video/plugin.php on line 47
Strict Standards: Declaration of p_hidelinks::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_hidelinks/plugin.php on line 60
Strict Standards: Declaration of p_user_comments::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_user_comments/plugin.php on line 78
Strict Standards: Declaration of p_guests::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_guests/plugin.php on line 115
Strict Standards: Declaration of p_maps_obj::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_maps_obj/plugin.php on line 110
Strict Standards: Declaration of p_maps_places::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_maps_places/plugin.php on line 111
Strict Standards: Declaration of p_maps_news::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_maps_news/plugin.php on line 97
Strict Standards: Declaration of p_uc::execute() should be compatible with cmsPlugin::execute($event = '', $item = Array) in /var/www/cityua/data/www/open-lviv.com/plugins/p_uc/plugin.php on line 125
Увидел проблему только когда включил отображение ошибок в пхп. Может я ошибаюсь и эти ошибки вообще не имеют отношения друг к другу и скорее всего что не имеют потому что только что посмотрел с ошибкой и верхний отступ еще увеличился. Сейчас буду копать в самом файле шаблона, а еще лутше просто заменю его на стандартный и отпишусь что к чему
<script type="text/javascript" class="noprint">
var aImages = new Array();
var aURL = new Array();
var aArtists = new Array();
var iPrev = -1;
var iRnd = -1;
aImages[0] = "templates/_default_/images/bg/bg.jpg";
aImages[1] = "templates/_default_/images/bg/bg1.jpg";
aImages[2] = "templates/_default_/images/bg/bg2.jpg";
aImages[3] = "templates/_default_/images/bg/bg3.jpg";
$(document).ready(function() {
$("img#bg").load(function()
{
$("img#bg").fadeTo(2000,1);
setTimeout(function()
{
$("#image_description").animate({right: '-=150'}, 1000);
$("img#bg").fadeOut(2000);
setTimeout(LoadImages,2500);
}
,30000);
}
)
setTimeout(LoadImages,1000);
});
function LoadImage(iNr)
{
$("img#bg").attr("src", aImages[iNr]);
};
function LoadImages()
{
/* Select a random image number and make sure this is not equal to the previous image */
while(iPrev == iRnd)
{
iRnd = Math.floor(Math.random()*aImages.length);
}
/* Show the selected image */
LoadImage(iRnd);
iPrev = iRnd;
};
</script>