Change font size in starttable of new pages Change font size in starttable of new pages
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

Change font size in starttable of new pages

Started by Bonanza, January 07, 2006, 12:10:12 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Bonanza

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

Blueiris

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.
You can lead a horse to water, but you can't make him drink - he's got to discover that it's wet for himself.

Bonanza

Thanks Blueiris, that was the solution for my question!

B.r.
Bonanza