go41

the info you need to know


von Joern
Keine Kommentare

in original arthemia's header.php you should find this:Code:<div id="head" class="clearfloat"><div class="clearfloat">   <div id="logo" class="left">   <a href="<?php echo get_option('home'); ?>/"><img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/logo.png" width="177px" height="39px" alt="" /></a>   <div id="tagline"><?php bloginfo('description'); ?></div>   </div>   <div class="right">   <img src="<?php echo get_option('home'); ?>/wp-content/themes/arthemia/images/banners/wide.jpg" alt="" width="468px" height="60px"  />   </div></div>in div id logo there is your…


von Joern
Keine Kommentare

To get a plain page between header and footer in arthemia theme to display a forum you have to create a page template for Wordpress first. I just took page.php, which actually has this content:Code:<?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post_<?php the_ID(); ?>"> <span…