PDA

View Full Version : Adjusting font size, bold, italics in description boxes?


Seanix
16-Apr-2006, 05:28 AM
Happy Easter everybody !!!

Is there a way to change the size of your fonts and make it bold....etc in section description boxes ?????


Thanks !!



Sean :)

orcahouse
16-Apr-2006, 12:47 PM
Hi Sean,

One way is to use standard html and enclose it in !!< >!! which tells Actinic that what is enclosed is code and not plain text.

eg !!<<B> test </B>>!!

will show 'test' in bold. Codes for italics, font type and size etc are freely available on the web. Google is your friend! Hope it works.

Tom Riddell

jont
16-Apr-2006, 04:39 PM
You can also edit the Act_SectionLine.html template and either <span> tag the text or more preferrable to add in a CSS class to make changing in the future much less painfull

Seanix
16-Apr-2006, 11:29 PM
Hi Tom !

I tried to do what you suggested but it didn't work. when I typed in the html and selected apply it showed the html in the preview screen. Do I need to add anything before it???...Am I putting it in the right spot which is where you would type a description for your product??.... :confused:

As for you Jont, thank you for your reply, but I didn't understand much of it....lol
If you have a little time would you mind explaining it in simple terms for simple people like me...lol


Thanks guys !!



Sean :)

Seanix
16-Apr-2006, 11:54 PM
I worked it out, silly me....I didn't know you needed the "!!" in front of and at the end of the sentence....

What does this do ??? I have never seen this used before. Not that I have used it very much before either... :)

Do you need to out them in front of most of the html commands ??

Like changing header sizes and font colour ??


Thanks guys !!


Sean

Duncan Rounding
17-Apr-2006, 06:40 AM
!!< and >!! delimiters are used to tell Actinic that anything inside them contains html code. When the html pages are built from the templates Actinic removes these delimiters and leaves the html code in place. They may be used in many instances, the most popular being probably fragment and product descriptions.

orcahouse
17-Apr-2006, 08:03 AM
Hi Sean,

Sorry, thought I had explained it in my first posting. If you want to use html in any part of the descriptions then you must put !!< >!! around it otherwise Actinic assumes everything is part of the text - as you discovered!! It is a bit laborious if you want to adjust the format in lots of products, hence Jont's solution - but don't ask me how to do it -LOL!!

Tom