Jump to content

Featured Replies

Здравствуйте!

Хотелось бы сделать как у вас 15.png

1.не хватает горизонтальной линии, разделяющей профиль от сообщения

2. не хватат вертикальных линий

post-1-0-53206000-1356079305.png

Link to comment
https://ipbmafia.ru/topic/292-profil/
Share on other sites

ну там линии не видно наверное потому что цветом сделали одним, что за класс отвечает за это?

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=447
Share on other sites

Доброй ночи!

- 10 сообщение!

Боковая полоса:


.column_view .post_body{
border-left: 1px solid #e4e4e4;
}
[/CODE]

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=448
Share on other sites

а если у меня вот так написано, то что исправлять?)

.post_block:first-of-type

h3{border-top:0}.post_online{vertical-align:middle;margin: -3px 5px 0 0}.post_username{float:left;min-width:177px;font-weight:bold}.post_date{color:#777;float:left;font-size:11px;font-weight:normal}.post_wrap{top:0px}.post_body{margin-left:175px;padding:12px}.post_body

.post{line-height:1.6;font-size:12px}.column_view .post_body

.post{padding-bottom:12px}.post_block.no_sidebar

.post_body{margin-left:0px}.posted_info{padding:0

0 10px 0}.posted_info

strong.event{color:#1c2837;font-size:1.2em}.post_ignore{background:#1c1c1c;color:#777;font-size:0.9em;padding:15px}.post_ignore

.reputation{text-align:center;padding:2px

6px;float:none;display:inline}.rep_bar{white-space:nowrap;margin:6px

4px}.rep_bar

.reputation{font-size:10px;padding:2px

10px !important}

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=449
Share on other sites

исправь .post_body{margin-left:175px;padding:12px}, добавь туда бордер

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=450
Share on other sites

ок,спасибо,

а как убрать первые две черточки между хуком двух кнопок(отослать сообщение и добавить в друзья)

у меня эти две кнопки тоже окантованы черточками, как убрать?

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=452
Share on other sites

Смотришь исходный код, ишешь класс этих полей и прописываешь в ipb_styles.css класс не имеет верхнуюю чёрточку (border-top: 0 !important)

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=454
Share on other sites

#pm_button ipsButton_secondary ipsType_smaller {border-top: 0 !important;}

Прописал так, ничего не получилось :)

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=455
Share on other sites

.add_friend {border: 0 !important}

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=457
Share on other sites

надо же еще вторую прописать?)

.add_massage?)

с одной не исчезла

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=458
Share on other sites

Попробуй)) Я по-моему класс дописывал в самом хуке и потом устанавливал, не помню уже...

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=460
Share on other sites

Доброй ночи!

Ахаха, убило :)

Сори за оффтоп

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=463
Share on other sites

class hookuipbuttons

{

protected $registry;

public function __construct()

{

/* Make registry objects */

$this->registry = ipsRegistry::instance();

}

public function getOutput()

{

/* Return */

return;

}

public function replaceOutput( $output, $key )

{

/* Got some data? */

if ( is_array( $this->registry->output->getTemplate('global')->functionData['userInfoPane'] ) && count( $this->registry->output->getTemplate('global')->functionData['userInfoPane'] ) )

{

/* Init some vars */

$tag = '<!--hook.' . $key . '-->';

$last = 0;

/* Loop through each template call */

foreach ( $this->registry->output->getTemplate('global')->functionData['userInfoPane'] as $k => $v )

{

/* See if we can find this hook point */

$pos = strpos( $output, $tag, $last );

/* Found? */

if ( $pos !== FALSE )

{

/* Start swapping it out */

$string = $this->registry->output->getTemplate('global')->hookuipbuttons( $v['author'] );

$output = substr_replace( $output, $string . $tag, $pos, strlen( $tag ) );

$last = $pos + strlen( $tag . $string );

}

}

}

/* Return */

return $output;

}

}]]></hooks_source>

</file>

</hookfiles>

<hookextras_settings/>

<hookextras_language/>

<hookextras_modules/>

<hookextras_help/>

<hookextras_templates>

<templates>

<template_group>skin_global</template_group>

<template_content><![CDATA[<br /><li>

<if test="$this->memberData['member_id'] AND $this->memberData['member_id'] != $author['member_id'] AND $this->memberData['g_use_pm'] AND $this->memberData['members_disable_pm'] == 0 AND IPSLib::moduleIsEnabled( 'messaging', 'members' )">

<a href='{parse url="app=members&amp;module=messaging&amp;section=send&amp;do=form&amp;fromMemberID={$author['member_id']}" base="public"}' title='{$this->lang->words['pm_this_member']}' id='pm_xxx_{$author['member_id']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="send_msg"}</a>

</if>

<if test="$this->memberData['member_id'] AND $this->memberData['member_id'] != $author['member_id'] && $this->settings['friends_enabled'] AND $this->memberData['g_can_add_friends']">

<if test="IPSMember::checkFriendStatus( $author['member_id'] )">

<a href='{parse url="app=members&amp;module=profile&amp;section=friends&amp;do=remove&amp;member_id={$author['member_id']}&amp;secure_key={$this->member->form_hash}" base="public"}' title='{$this->lang->words['remove_friend']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="remove_friend"}</a>

<else />

<a href='{parse url="app=members&amp;module=profile&amp;section=friends&amp;do=add&amp;member_id={$author['member_id']}&amp;secure_key={$this->member->form_hash}" base="public"}' title='{$this->lang->words['add_friend']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="add_friend"}</a>

</if>

</if>

</li>]]></template_content>

<template_name>hookuipbuttons</template_name>

<template_data>$author</template_data>

<template_updated>1308263590</template_updated>

<template_removable>0</template_removable>

<template_added_to>0</template_added_to>

<template_user_added>1</template_user_added>

<template_user_edited>0</template_user_edited>

<template_master_key>root</template_master_key>

</templates>

</hookextras_templates>

<hookextras_css/>

<hookextras_tasks/>

<hookextras_database_create/>

<hookextras_database_alter/>

<hookextras_database_update/>

<hookextras_database_insert/>

</hookexport>

Скажи, пожалуйста, что вписывать 5.png

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=483
Share on other sites

Зайди в глобальные --> hookuipbuttons и замени всё на:


<br /><li class='add_friend'>
<if test="$this->memberData['member_id'] AND $this->memberData['member_id'] != $author['member_id'] AND $this->memberData['g_use_pm'] AND $this->memberData['members_disable_pm'] == 0 AND IPSLib::moduleIsEnabled( 'messaging', 'members' )">
<a href='{parse url="app=members&amp;module=messaging&amp;section=send&amp;do=form&amp;fromMemberID={$author['member_id']}" base="public"}' title='{$this->lang->words['pm_this_member']}' id='pm_xxx_{$author['member_id']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="send_msg"}</a>
</if>
<if test="$this->memberData['member_id'] AND $this->memberData['member_id'] != $author['member_id'] && $this->settings['friends_enabled'] AND $this->memberData['g_can_add_friends']">
<if test="IPSMember::checkFriendStatus( $author['member_id'] )">
<a href='{parse url="app=members&amp;module=profile&amp;section=friends&amp;do=remove&amp;member_id={$author['member_id']}&amp;secure_key={$this->member->form_hash}" base="public"}' title='{$this->lang->words['remove_friend']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="remove_friend"}</a>
<else />
<a href='{parse url="app=members&amp;module=profile&amp;section=friends&amp;do=add&amp;member_id={$author['member_id']}&amp;secure_key={$this->member->form_hash}" base="public"}' title='{$this->lang->words['add_friend']}' class='pm_button ipsButton_secondary ipsType_smaller'>{parse replacement="add_friend"}</a>
</if>
</if>
</li>
[/CODE]

в ipb_styles.css : .add_friend {border: 0 !important}

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=484
Share on other sites

Спасибо :)

Link to comment
https://ipbmafia.ru/topic/292-profil/?&do=findComment&comment=485
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
Ответить в этой теме...

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

  • No registered users viewing this page.