<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>bbPress Showcase Topic: bbpress search , super search</title>
<link>http://bbshowcase.org/forums/</link>
<description>bbPress Showcase Topic: bbpress search , super search</description>
<language>en</language>
<pubDate>Sun, 12 Feb 2012 03:50:22 +0000</pubDate>

<item>
<title>_ck_ on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2073</link>
<pubDate>Fri, 20 Aug 2010 10:31:27 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">2073@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;SPANs cannot adjust vertical spacing, only horizontal.&#60;/p&#62;
&#60;p&#62;You can make it a DIV but then of course it will break the line.&#60;/p&#62;
&#60;p&#62;You can try this in your stylesheet though, might work:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;span.indent {display:inline-block;}&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>pastorbobsforum on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2072</link>
<pubDate>Fri, 20 Aug 2010 10:26:05 +0000</pubDate>
<dc:creator>pastorbobsforum</dc:creator>
<guid isPermaLink="false">2072@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;That was exactly how I wanted the margins to behave. You see, the &#60;code&#62;-&#60;/code&#62; was placed there intentionally. I wanted the count summary &#60;code&#62;10px&#60;/code&#62; up, thus the &#60;code&#62;-10px&#60;/code&#62;, and &#60;code&#62;10px&#60;/code&#62; underneath it, &#60;code&#62;10px&#60;/code&#62;. The aforementioned vertical overlapping...I blame it on my way of expressing myself.&#60;/p&#62;
&#60;p&#62;In what concerns the plugin editing, this is what I've done:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span class=&#38;quot;indent&#38;quot;&#38;gt;&#38;lt;font color=&#38;quot;green&#38;quot;&#38;gt;
&#38;lt;?php echo $total.&#38;quot; &#38;quot;;  _e(&#38;#39;results found&#38;#39;) ?&#38;gt;
, showing &#38;lt;?php echo 1+($page-1)*$limit.&#38;quot; - &#38;quot;;
echo ($page*$limit&#38;gt;$total) ? $total : $page*$limit; ?&#38;gt;
&#38;lt;/font&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;With this class added to my stylesheet:&#60;br /&#62;
&#60;code&#62;.indent {margin: -10px 10px 10px 10px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;No change. But it's OK anyway. Thank you.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Bob
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2071</link>
<pubDate>Fri, 20 Aug 2010 09:01:04 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">2071@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;I don't use external css because every external file slows down a page. If you have a dozen plugins each with their own css, you have a dozen external files that give a browser quite a workout. &#60;/p&#62;
&#60;p&#62;&#60;code&#62;.indent {margin: -10px 10px 10px 10px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;CSS margins are done via  TOP RIGHT BOTTOM LEFT&#60;/p&#62;
&#60;p&#62;So  &#60;code&#62;-10px&#60;/code&#62; will cause the top to move 10 pixels UP.&#60;/p&#62;
&#60;p&#62;If that's the overlap problem, get rid of the minus sign.
&#60;/p&#62;</description>
</item>
<item>
<title>pastorbobsforum on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2070</link>
<pubDate>Fri, 20 Aug 2010 08:37:25 +0000</pubDate>
<dc:creator>pastorbobsforum</dc:creator>
<guid isPermaLink="false">2070@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;&#60;blockquote&#62;I don't know what you are trying to achieve.&#60;/blockquote&#62;&#60;/p&#62;
&#60;p&#62;I am trying to avoid the vertical overlapping that you have so accurately identified.&#60;/p&#62;
&#60;p&#62;This is the section of the plugin that I wanted to modify:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;div class=&#38;quot;indent&#38;quot;&#38;gt;&#38;lt;font color=&#38;quot;green&#38;quot;&#38;gt;&#38;lt;?php echo $total.&#38;quot; &#38;quot;;  _e(&#38;#39;results found&#38;#39;) ?&#38;gt;

, showing &#38;lt;?php echo 1+($page-1)*$limit.&#38;quot; - &#38;quot;; echo ($page*$limit&#38;gt;$total) ? $total : $page*$limit; ?&#38;gt;&#38;lt;/font&#38;gt;&#38;lt;/div&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;How would I apply the span there?&#60;/p&#62;
&#60;p&#62;Even though I didn't manage to change the search output as I wanted to, by inserting this &#60;code&#62;.indent {margin: -10px 10px 10px 10px;}&#60;/code&#62; into my stylesheet, I worked around it by modifying the &#60;code&#62;margin-top&#60;/code&#62; of my &#60;code&#62;#latest&#60;/code&#62;. Now it behaves reasonably well. It's not exactly what I wanted, since I had my reasons for having that margin-top set up as it was, but it will have to do.&#60;/p&#62;
&#60;p&#62;One question if you don't mind. While some plugins come with their own .css file(s), some of yours do not. Is there a reason for that?&#60;/p&#62;
&#60;p&#62;Thank you for the support and keep up the good work.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Bob
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2060</link>
<pubDate>Mon, 16 Aug 2010 13:18:11 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">2060@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;Since I am unlikely to ever update the plugin anymore, I would suggest just editing the plugin directly, simply wrapping whatever you want to affect in a &#60;code&#62;&#38;lt;span&#38;gt;&#38;lt;/span&#38;gt;&#60;/code&#62; and adding a class in your stylesheet.&#60;/p&#62;
&#60;p&#62;Note that spans cannot change vertical spacing but I don't know what you are trying to achieve.
&#60;/p&#62;</description>
</item>
<item>
<title>pastorbobsforum on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2059</link>
<pubDate>Mon, 16 Aug 2010 12:16:11 +0000</pubDate>
<dc:creator>pastorbobsforum</dc:creator>
<guid isPermaLink="false">2059@http://bbshowcase.org/forums/</guid>
<description>&#60;blockquote&#62;&#60;p&#62;&#60;cite&#62;_ck_ - 7 minutes ago &#60;a href=&#34;/forums/topic/bbpress-search-super-search/page/2#post-2058&#34;&#62;&#38;nbsp;&#38;raquo;&#38;nbsp;&#60;/a&#62;&#60;/cite&#62;&#60;br /&#62;
It will affect more than the count summary, probably the entire output.&#60;br /&#62;
You can put it into your regular stylesheet for your theme.&#60;/p&#62;
&#60;/blockquote&#62;
&#60;p&#62;Well, if that is so, then I'll simply add the entire style of your plugin to my stylesheet, just in case.&#60;/p&#62;
&#60;p&#62;But what's weird is that this message &#60;code&#62;No results found.&#60;/code&#62; displays properly, even though is using the same class, yet slightly modified: &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.indent {
margin-bottom:0;
margin-left:10px;
margin-right:10px;
margin-top:0;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Edit: it is definitely not a good idea to add the entire stylesheet of the plugin to my own sylesheet.&#60;/p&#62;
&#60;p&#62;This is what I've added, &#60;code&#62;.indent {margin: -3px 5px 12px 10px ;}&#60;/code&#62;, with no result.&#60;/p&#62;
&#60;p&#62;Suggestions?
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2058</link>
<pubDate>Mon, 16 Aug 2010 12:03:42 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">2058@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;Indent is just a class I use on my own site as a wrapper.&#60;/p&#62;
&#60;p&#62;While I may use it on my plugins it won't have an effect elsewhere.&#60;/p&#62;
&#60;p&#62;It will affect more than the count summary, probably the entire output.&#60;/p&#62;
&#60;p&#62;You can put it into your regular stylesheet for your theme.
&#60;/p&#62;</description>
</item>
<item>
<title>pastorbobsforum on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-2057</link>
<pubDate>Mon, 16 Aug 2010 12:00:48 +0000</pubDate>
<dc:creator>pastorbobsforum</dc:creator>
<guid isPermaLink="false">2057@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;Hello.&#60;/p&#62;
&#60;p&#62;I am also using this plugin and the name speaks for itself, &#34;super&#34;.&#60;/p&#62;
&#60;p&#62;I have one issue though. When I am performing a successful search, I receive a message, saying for instance &#60;code&#62;1 results found, showing 1 - 1&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Now, this message is not formatted in a way that would fit my theme.&#60;/p&#62;
&#60;p&#62;So, I managed to identify the style of this div,&#60;/p&#62;
&#60;p&#62;&#60;code&#62;.indent {margin: 0 10px;}&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;which I will have to change to &#60;code&#62;.indent {margin: -3px 5px 12px 10px ;}&#60;/code&#62;,&#60;br /&#62;
but I don't know where can I find the stylesheet.&#60;/p&#62;
&#60;p&#62;Any suggestions are welcome.&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Bob
&#60;/p&#62;</description>
</item>
<item>
<title>_ck_ on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-1427</link>
<pubDate>Wed, 01 Jul 2009 07:05:08 +0000</pubDate>
<dc:creator>_ck_</dc:creator>
<guid isPermaLink="false">1427@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;You have needs beyond what I can help with if you do not know how to put a simple link in your templates to the search page. &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php echo &#38;#39;&#38;lt;a class=&#38;quot;searchlink&#38;quot; href=&#38;quot;&#38;#39;.bb_get_option(&#38;#39;uri&#38;#39;).&#38;#39;search.php&#38;quot;&#38;gt;Search&#38;lt;/a&#38;gt;&#38;#39;; ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>vikram_gripsack on "bbpress search , super search"</title>
<link>http://bbshowcase.org/forums/topic/bbpress-search-super-search/page/2#post-1426</link>
<pubDate>Wed, 01 Jul 2009 00:25:40 +0000</pubDate>
<dc:creator>vikram_gripsack</dc:creator>
<guid isPermaLink="false">1426@http://bbshowcase.org/forums/</guid>
<description>&#60;p&#62;I understand the concern in sharing the number, I am fine and just curious and interested to talk with you for few minutes.&#60;/p&#62;
&#60;p&#62;I am attaching 3 images, please do have a look at your time.&#60;/p&#62;
&#60;p&#62;1) I have tested the search option as you have said, its working.&#60;br /&#62;
2) the problem is I am desired to have something like search option to be dispalyed in the front page as like bbshowcase , so attaching image, pls check it.&#60;br /&#62;
3) I liked so much the way , you enabled the search tab displaying in every post at the right side corner, intrested to have such option in my bbpress forum also, please check the attached image.&#60;/p&#62;
&#60;p&#62;4) I search results are displaying very clearly within the specified box , with no overlaps of the text, please suggest me where should i modify the code.(also attahced image of bbshowcase for reference)&#60;/p&#62;
&#60;p&#62;Please give your valuable suggestions.&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
-Vikram&#60;/p&#62;
&#60;p&#62; [attachment=1426,128] [attachment=1426,129] [attachment=1426,130] [attachment=1426,131]
&#60;/p&#62;</description>
</item>

</channel>
</rss>

