idascanorg
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing Title FontIn your style.css file… WP Admin -> Presentation -> Theme Editor -> style.css
On your’s its on line 83:
h1, h2, h3 {
font-family: 'Trebuchet MS', 'Lucida Grande', Verdana, Arial, Sans-Serif;
font-weight: bold;
}
If you look in your header template, the title<?php bloginfo('name'); ?>is within the h1 tagsForum: Fixing WordPress
In reply to: Create a Page and my beloved custom htaccess fileYou could always CHMOD your .htaccess file to prevent it from being written to, regardless of what WP tries to do to it.
Create a page shouldn’t touch .htaccess for permalinks unless you specifically go in and activate permalinks. Even then, if you haven’t CHMOD’d the file to 666 or higher, its not going to get written to anyways.
Forum: Fixing WordPress
In reply to: Authors on my Blog are AnonymousAlso do us a favor and post the link to the blog with issues…
Forum: Fixing WordPress
In reply to: Authors on my Blog are AnonymousHere is a copy out of my blog’s Main Template file… Access from WP Admin -> Presentation -> Theme Editor -> Main Template
<br />
<div class="post"><br />
<h3 class="storytitle" id="post-<?php the_ID(); ?>"><a>" rel="bookmark"><?php the_title(); ?></a></h3><br />
<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div><div class="storycontent"><br />
<?php the_content(__('(more...)')); ?><br />
</div><br />