Posted March 28, 20159 yr Здравствуйте, увеличил блок аватара, теперь когда пишешь текст в теме - сначало все нормально, а потом когда заканчивается аватар - текст немного съезжает под него, как исправить, скажите пожалуйста.
March 28, 20159 yr В ipb_styles.css добавить в самый низ: /** - * FIX Post Body - * ------------------------------------------------------------------------- */ .post_body { margin-left: 220px !important; }
March 28, 20159 yr Author В ipb_styles.css добавить в самый низ: /** - * FIX Post Body - * ------------------------------------------------------------------------- */ .post_body { margin-left: 220px !important; } Не помогло.
March 28, 20159 yr Понятно. Тогда ищи откуда у тебя берётся в коде страницы такая запись: <!-- Forces topic photo to show without thumb --> <style type='text/css'> .ipsUserPhoto_variable { max-width: 170px !important; } .post_body { margin-left: 195px !important; } </style>
March 28, 20159 yr Author Спасибо за помощь. Решение проблемы: АЦ - внешний вид - ваш стиль. Ищем 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 March 28, 20159 yr by RoyalDream