Jump to content

Проблема с отступом от аватара в темах.

Featured Replies

Posted
comment_84199

Здравствуйте, увеличил блок аватара, теперь когда пишешь текст в теме - сначало все нормально, а потом когда заканчивается аватар - текст немного съезжает под него, как исправить, скажите пожалуйста.

 

 post-28002-0-12430600-1427550669_thumb.p

 

 

comment_84200

В ipb_styles.css добавить в самый низ:

/**
- * FIX Post Body
- * ------------------------------------------------------------------------- */

.post_body {
  margin-left: 220px !important;
}

  • Author
comment_84201

 

В ipb_styles.css добавить в самый низ:

/**
- * FIX Post Body
- * ------------------------------------------------------------------------- */

.post_body {
  margin-left: 220px !important;
}

Не помогло.

comment_84202

Понятно. Тогда ищи откуда у тебя берётся в коде страницы такая запись:

<!-- Forces topic photo to show without thumb -->
	<style type='text/css'>
		.ipsUserPhoto_variable { max-width: 170px !important; }
		
			.post_body { margin-left: 195px !important; }
		
	</style>
  • Author
comment_84205

Спасибо за помощь.

 

 

Решение проблемы:

 

АЦ - внешний вид - ваш стиль. Ищем includeRTL
 
и удаляем код:
<if test="hasMemberTopicMax:|:$this->settings['member_topic_avatar_max']">
    <!-- Forces topic photo to show without thumb -->
    <style type='text/css'>
        .ipsUserPhoto_variable { max-width: {parse expression="intval($this->settings['member_topic_avatar_max'])"}px !important; }
        <if test="RTLMargin:|:$this->isRtlLang">
            .post_body { margin-right: {parse expression="((intval($this->settings['member_topic_avatar_max'] + 25 ) < 185 ) ? 185 : intval($this->settings['member_topic_avatar_max'] + 25 ) )"}px !important; }
        <else />
            .post_body { margin-left: {parse expression="((intval($this->settings['member_topic_avatar_max'] + 25 ) < 185 ) ? 185 : intval($this->settings['member_topic_avatar_max'] + 25 ) )"}px !important; }
        </if>
    </style>
</if> 

Edited by RoyalDream

Guest
This topic is now closed to further replies.

Последние посетители 0

  • No registered users viewing this page.