coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: Bonanza on January 07, 2006, 12:10:12 PM

Title: Change font size in starttable of new pages
Post by: Bonanza on January 07, 2006, 12:10:12 PM
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
Title: Re: Change font size in starttable of new pages
Post by: Blueiris on January 07, 2006, 05:15:56 PM
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.
Title: Re: Change font size in starttable of new pages
Post by: Bonanza on January 08, 2006, 08:52:51 PM
Thanks Blueiris, that was the solution for my question!

B.r.
Bonanza