Log in

View Full Version : Vb. Need to change Search Text normal, NOT italic.


lamur
12-13-2005, 10:09 PM
I have a "Today" feature which basically just links to this:
search.php?do=getdaily&showposts=1

Well, when the text displays, it displays in italic font. How do I change that so it will be normal font?

Just like this:
http://www.vbulletin.com/forum/search.php?searchid=4545

But see how all the text is Italic? How do I change it to normal?
Thanks!

lamur
12-15-2005, 12:17 AM
I have a "Today" feature which basically just links to this:
search.php?do=getdaily&showposts=1

Well, when the text displays, it displays in italic font. How do I change that so it will be normal font?

Just like this:
http://www.vbulletin.com/forum/search.php?searchid=4545

But see how all the text is Italic? How do I change it to normal?
Thanks!

I hate to bump this, cause I know it's an easy fix. But it's driving me nuts! Which if I was a squirrel it wouldnt be too bad.

TruthElixirX
12-15-2005, 02:05 AM
Take a look tomorrow for you. :)

lamur
12-15-2005, 02:08 AM
Take a look tomorrow for you. :)

Your awesome :)

Guest190829
12-15-2005, 02:19 AM
AdminCP -> Style Manager -> Click "Edit Templates" for the style you want to edit -> Search Templates -> Click on the template "search_results_postbit" ->

Find:


<a href="showthread.php?$session[sessionurl]p=$post[postid]$post[highlight]#post$post[postid]">$post[posttitle]</a>

Replace with:


<span class="smallfont" stlye="font-style: normal"><a href="showthread.php?$session[sessionurl]p=$post[postid]$post[highlight]#post$post[postid]">$post[posttitle]</a></span>


Find:

$post[pagetext]

Replace with:

<span class="smallfont" stlye="font-style: normal">
$post[pagetext]</span>


And that should work. :)

lamur
12-15-2005, 08:43 PM
Danny your a stud! That works like a charm. I am going to have to bookmark this for future reference.
Thanks a ton!