Log in

View Full Version : How do I edit the sticky_thread_prefix phrase?


tonyswifey
11-08-2008, 08:17 PM
I want to edit the sticky_thread_prefix phrase to make the word Sticky a different color & bold it. Where do I find the sticky_thread_prefix phrase to edit it?

UKBusinessLive
11-08-2008, 08:38 PM
To change the font style of the 'Sticky:' prefix:

1:
Admin CP > Languages & Phrases > Search in Phrases

Search for: sticky_thread_prefix
Search in...: Phrase Variable Name Only

Once found, click 'edit'. In the space provided, enter:


<span class="stickyprefix">Sticky:</span>


Click 'Save'


2:
Admin CP > Style Manager > Style you want to change
All Style Options > Go

In Additional CSS Definitions add:

.stickyprefix {
color:#FF4400;
font-weight:bold;
}

Click 'Save'

Done

The above will change the style of 'Sticky:" to Bold Red text. If a color other than red is desired, change FF4400 to your liking. Additionally, if you do not want the text bolded, remove: font-weight:bold;

Have fun :D

tonyswifey
11-08-2008, 08:53 PM
Oh wow, I never would have figured this out. Thanks a lot for helping me with this :)

UKBusinessLive
11-08-2008, 09:00 PM
Oh wow, I never would have figured this out. Thanks a lot for helping me with this :)

No worries anytime :)