Click to See Complete Forum and Search --> : changing font style from original in script


Agent 007
08-03-2006, 08:53 AM
I am using a script for my site. I have uploaded the files to my server and all works well, but many of the designs and fonts are plain. I want to use a more creative font and different colors. I have found most of the .tpl files that produce the text I wish to alter, but I cannot figure out how to edit the code without destroying its functionality. This is a sample of the code which calls for the display of "The Face of Rochester Blog" as the head of the page, which is the text I wish to change.

/*
{assign var="page_title" value="##The Face of Rochester Blog##"}
{include file="header.inc.tpl"}

<h1>{$page_title|escape}</h1>
*/

Thanks for any help you can give me

NogDog
08-03-2006, 11:30 AM
Is there a CSS stylesheet associated with this that sets the styles? If so, that's what you want to edit, not the source code for the page.

Agent 007
08-03-2006, 03:56 PM
Is there a CSS stylesheet associated with this that sets the styles? If so, that's what you want to edit, not the source code for the page.
CSS sounds very familiar. I figured the style parameters might be in another file since it seemed to just call for the title without specifying font type. I'm about to look into the CSS files now. Thanks.