The Librarian
01-18-2007, 02:55 PM
Hello, (If I've posted this in the wrong place, please move it. Thanks!)
I've installed this mod:
https://vborg.vbsupport.ru/showthread.php?t=97544
and the color addon found here:
https://vborg.vbsupport.ru/showpost.php?p=791952&postcount=23
Both work beautifully, but I find the fonts people choose difficult to read sometimes. Some fonts just need to be bigger. I wanted to add the font size choice, so I decided to try to make my own mod by using the same basic pattern in the first two mods.
I added the additional Field for the Default Font Size. It's a drop down box with three choices of font size - 2, 3, 4.
Then I needed the code so I followed the pattern of the first two mods. Here's what I came up with:
ORIGINAL POSTBIT LEGACY TEMPLATE CODE (with font and color added):
<div id="post_message_$post[postid]"><if condition="$post[field13]"><font face="$post[field13]"<if condition="$post[field14]"> color="$post[field14]"</if>>$post[message]</font><else />$post[message]</if></div>
NEW POSTBIT LEGACY TEMPLATE CODE (with size field added):
<div id="post_message_$post[postid]"><if condition="$post[field13]"><font face="$post[field13]"<if condition="$post[field14]"> color="$post[field14]"<if condition="$post[field17]"> font size="$post[field17]"</if>>$post[message]</font><else />$post[message]</if></div>
*But* everytime I try to save it, I get the following error message:
The following error occurred when attempting to evaluate this template:
The conditional on line 78 appears to be missing its end tag (</if>). The template will not function properly unless this is fixed.
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
I've checked it and I can't find my error... but I'm not a programmer. This is all Greek to me. Can somebody tell me what I need to change to make this work? Or will it not work for some other reason? BTW, I'm running vB 3.6.4.
Thanks!
I've installed this mod:
https://vborg.vbsupport.ru/showthread.php?t=97544
and the color addon found here:
https://vborg.vbsupport.ru/showpost.php?p=791952&postcount=23
Both work beautifully, but I find the fonts people choose difficult to read sometimes. Some fonts just need to be bigger. I wanted to add the font size choice, so I decided to try to make my own mod by using the same basic pattern in the first two mods.
I added the additional Field for the Default Font Size. It's a drop down box with three choices of font size - 2, 3, 4.
Then I needed the code so I followed the pattern of the first two mods. Here's what I came up with:
ORIGINAL POSTBIT LEGACY TEMPLATE CODE (with font and color added):
<div id="post_message_$post[postid]"><if condition="$post[field13]"><font face="$post[field13]"<if condition="$post[field14]"> color="$post[field14]"</if>>$post[message]</font><else />$post[message]</if></div>
NEW POSTBIT LEGACY TEMPLATE CODE (with size field added):
<div id="post_message_$post[postid]"><if condition="$post[field13]"><font face="$post[field13]"<if condition="$post[field14]"> color="$post[field14]"<if condition="$post[field17]"> font size="$post[field17]"</if>>$post[message]</font><else />$post[message]</if></div>
*But* everytime I try to save it, I get the following error message:
The following error occurred when attempting to evaluate this template:
The conditional on line 78 appears to be missing its end tag (</if>). The template will not function properly unless this is fixed.
This is likely caused by a malformed conditional statement. It is highly recommended that you fix this error before continuing, but you may continue as-is if you wish.
I've checked it and I can't find my error... but I'm not a programmer. This is all Greek to me. Can somebody tell me what I need to change to make this work? Or will it not work for some other reason? BTW, I'm running vB 3.6.4.
Thanks!