View Full Version : Where can I move the threadbit title in search results over?
Sharriel
04-27-2016, 12:09 PM
I would like for the title not to line up right on the left hand side.
MarkFL
04-27-2016, 12:41 PM
Go to your "additional.css" template and add the code:
.searchtitle a {
margin-left: XXpx;
}
Where "XX" is the number of pixels you wish to be on the left margin of the thread title. :)
Sharriel
04-27-2016, 01:04 PM
Thanks! What about the "started by"?
--------------- Added 1461769843 at 1461769843 ---------------
Ok, I figure that out...I did:
.label {
padding: 0px 0;
display:block;
top:0px;
padding-left:70px;
}
But now my post icons are not showing up next to my posts. Do you know how to get that done? You can take a look at www.couponwithcents.com and click New Posts
MarkFL
04-27-2016, 03:43 PM
Okay, try changing the selector I posted to:
.searchtitle {
margin-left: XXpx;
}
Sharriel
04-27-2016, 06:05 PM
How can I get the post icons to show up next to the search title?
MarkFL
04-27-2016, 06:16 PM
Did you change the selector, to the most recent I posted? A visit to your site indicates you haven't yet. :)
Sharriel
04-27-2016, 06:26 PM
Yes, I did. my additional.css says
.searchtitle a {
margin-left: 90px;
}
.label {
padding: 0px 0;
display:block;
top:0px;
padding-left:90px;
}
MarkFL
04-27-2016, 06:29 PM
I removed the anchor tag from the selector I posted...you want:
.searchtitle {
margin-left: XXpx;
}
and not:
.searchtitle a {
margin-left: XXpx;
}
See that "a" to the right of the classname "searchtitle" means to only apply the given CSS to any anchor tags (links) that are within elements with the class "searchtitle"...but we want to apply the CSS (give the left margin) to the element with the class "searchtitle" itself, not just to any anchor tags within. :)
Sharriel
04-28-2016, 12:00 PM
The post icons still aren't showing up. I don't know what's up.
MarkFL
04-28-2016, 05:56 PM
vBulletin doesn't display thread icons in the search results. However, you can add this feature by editing your "search_threadbit" template as follows:
Locate the code:
<h3 class="searchtitle">
And directly below this, add the following:
<vb:if condition="$show['threadicon']">
<img src="{vb:raw thread.threadiconpath}" alt="{vb:raw thread.threadicontitle}" border="0" />
</vb:if>
Sharriel
04-28-2016, 10:15 PM
MarkFL!!! You are the freaking man!!!!!!!!!!!!!!!!!!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.