I added two new standalone pages related to this template with coppermine header, footer and navigation:
<?php
define('IN_COPPERMINE', true);
require('include/init.inc.php');
pageheader('Your page title goes here');
// your actual page content starts here
starttable("100%", 'Content block title', 1);
?>
<tr>
<td class="tableb" valign="top" align="center">
Hello World
</td>
</tr>
<?php
endtable();
// your actual page content ends here
pagefooter();
ob_end_flush();
?>
How do I change the font-size only in starttable("100%", 'Content block title', 1) without affecting the font-size in the "Hello World" text? I tried different ways, none of them worked.
B.r.
Bonanza
Hmmm, reading your message it looks like you are trying to change the font size for a function, and that can't be. :) Do you want to change the font size of the words "Content block title" as they appear on the page? If so, then look for "tableh1a" in your style sheet, and set a font size for that style.
Thanks Blueiris, that was the solution for my question!
B.r.
Bonanza