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

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

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