<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Форум &#187; Topic: плагин Avatar</title>
		<link>http://bbpress.ru/forum/topic/111</link>
		<description>Форум &raquo; Topic: плагин Avatar</description>
		<language>ru-RU-bb</language>
		<pubDate>Fri, 10 Feb 2012 11:13:47 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.2</generator>
		<textInput>
			<title><![CDATA[Поиск]]></title>
			<description><![CDATA[Поиск всех тем из этих форумов.]]></description>
			<name>q</name>
			<link>http://bbpress.ru/forum/search.php</link>
		</textInput>
		<atom:link href="http://bbpress.ru/forum/rss/topic/111" rel="self" type="application/rss+xml" />

		<item>
			<title>Alex   "плагин Avatar"</title>
			<link>http://bbpress.ru/forum/topic/111#post-359</link>
			<pubDate>Ср, 04 Jun 2008 14:51:04 +0000</pubDate>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="false">359@http://bbpress.ru/forum/</guid>
			<description>&#60;p&#62;Ну, попробуйте разные значения в строчке&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
margin-left: -165px;&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
Также рекомендую вам сайт &#60;a href=&#34;http://htmlbook.ru&#34;&#62;htmlbook.ru&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>algabas   "плагин Avatar"</title>
			<link>http://bbpress.ru/forum/topic/111#post-358</link>
			<pubDate>Ср, 04 Jun 2008 10:52:00 +0000</pubDate>
			<dc:creator>algabas</dc:creator>
			<guid isPermaLink="false">358@http://bbpress.ru/forum/</guid>
			<description>&#60;p&#62;Когда вставляю вторую половину, аватара с именем пользователя &#34;уезжает&#34; влево, дизайн портится.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Alex   "плагин Avatar"</title>
			<link>http://bbpress.ru/forum/topic/111#post-355</link>
			<pubDate>Вт, 03 Jun 2008 21:37:09 +0000</pubDate>
			<dc:creator>Alex</dc:creator>
			<guid isPermaLink="false">355@http://bbpress.ru/forum/</guid>
			<description>&#60;p&#62;В фале style.css найдите строчки&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
#thread .post {&#60;br /&#62;
	_height: 90px; /* Hack to fix broken .alt coloring in IE6 */&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
Замените их на эти&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
#thread .post {&#60;br /&#62;
        min-height: 200px;&#60;br /&#62;
	_height: 90px; /* Hack to fix broken .alt coloring in IE6 */&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
Затем найдите строчки&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
.threadauthor {&#60;br /&#62;
	float: left;&#60;br /&#62;
	padding: 1em 1em 0 1em;&#60;br /&#62;
	width: 120px;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
и замените их на эти&#60;br /&#62;
&#60;code&#62;&#60;br /&#62;
.threadauthor {&#60;br /&#62;
margin-left: -165px;&#60;br /&#62;
overflow: hidden;&#60;br /&#62;
position: absolute;&#60;br /&#62;
max-height: 215px;&#60;br /&#62;
width: 150px;&#60;br /&#62;
}&#60;br /&#62;
&#60;/code&#62;&#60;br /&#62;
Должно получиться :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>algabas   "плагин Avatar"</title>
			<link>http://bbpress.ru/forum/topic/111#post-352</link>
			<pubDate>Вт, 03 Jun 2008 20:06:57 +0000</pubDate>
			<dc:creator>algabas</dc:creator>
			<guid isPermaLink="false">352@http://bbpress.ru/forum/</guid>
			<description>&#60;p&#62;Alex, если вас не затруднит, подскажите, как сделать, чтобы заработал плагин Avatar?&#60;br /&#62;
Вот Reedme.&#60;br /&#62;
1. Put the file bb-avatar.php into your my-plugins directory (in the bbpress root directory)&#60;br /&#62;
2. Add &#34;post_avatar();&#34;  (between the php tags) in post.php or wherever you want it if using your own template.&#60;/p&#62;
&#60;p&#62;NOTE: If using the default template, you MUST change style.css so that avatars can fit in the author info area.&#60;/p&#62;
&#60;p&#62;I made these changes in style.css to allow for a 150x150px avatar&#60;/p&#62;
&#60;p&#62;.post {&#60;br /&#62;
	min-height: 200px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;.threadauthor {&#60;br /&#62;
	margin-left: -165px;&#60;br /&#62;
	overflow: hidden;&#60;br /&#62;
	position: absolute;&#60;br /&#62;
	max-height: 215px;&#60;br /&#62;
	width: 150px;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;NOTE: .post did not exist previously, but the div's did exist.  .threadauthor did exist, and I made a few changes to it.&#60;/p&#62;
&#60;p&#62;C первыми двумя пунктами разобрался с горем пополам. Строку post_avatar(); вставил в файл post.php&#60;br /&#62;
Но насчет размеров 150 на 150 куда вставлять не понял. В style  темы, которую использую? Но в какое место?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>

