Please someone help me concerning customizing Simplex2 theme for the site I am setting for news submission. I would like to, firstly, change the title "Drupal" on top, format it (I don't like the indention and the formatting). Any help is highly appreciated.... thanks.. this is the site: http://urevent.info/

Comments

dreed47’s picture

Not sure what affect you're looking to achive but you can change the title at admin/settings (name field)

The following lines in the page.tpl.php file print the heading html

        <div id="header">
          <span class="head-title"><a href="/<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print(substr($site_name, 0, 1)) ?><span class="head-darktitle"><?php print(substr($site_name,1,strlen($site_name)-1)) ?></span></a></span><br/>
        </div>

The following lines in the style.css file format the heading text

#header {
	vertical-align: top;
	padding-bottom: 11px;
	padding-left: 18px;
	font-family: Georgia, Lucida, Arial, sans-serif;
	font-size: 11px;
	font-weight: lighter;
	color: #00008B;
	border-bottom: 1px solid #efefef;
}

You may also want to check out the theme documentation as well

jocrenalix’s picture

Thanks der, I didn't realize it can be done that easy. I even changed the other elements on the page like color and font sizes by just working on CSS. Thanks a lot.