Hallo liebe Community
Ich habe ein kleines Problem mit meinem Wordpress Blog
Ich will den das alte Standarddesign nicht mehr angezeigt haben, habe aber im Hintergrund das neue von mir gecodete Design.
Nun will ich den Inhalt zwar im neuen anzeigen lassen also Navigation ect. soll erhalten bleiben, jedoch will ich das das Standarddesign nicht mehr angezeigt wird.
Was muss ich nun tun?
Hier mal der Index.php Code,
PHP
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /></head>
<title>{PAGETITEL}</title>
<style type="text/css">
<!--
body {
background-image: url(imgs/bg.png);
}
.boxes {
padding-left: 9px;
padding-right: 3px;
}
.style1 {
padding-left: 9px;
padding-right: 3px;
font-size: 10px;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
.topright {
padding-top: 8px;
}
.marquee {
padding-left: 58px;
padding-right: 8px;
font-size: 10px;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
-->
</style></head><center>
<body>
<br>
<table width="778" border="0" align="center" cellpadding="0" cellspacing="0" valign="top">
<tr>
<br>
<td width="213" valign="top"><table width="0" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="219" valign="top"> </td>
</tr>
<tr>
<td width="219" valign="top"><img src="layout/layer_oben.PNG"></td>
<td width="26" rowspan="8" valign="top"> </td>
</tr>
<tr>
<td background="layout/layer_mitte.PNG" class="boxes style1"><?php get_header(); ?>
<div id="content" class="narrowcolumn">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'kubrick'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time(__('F jS, Y', 'kubrick')) ?> <!-- by <?php the_author() ?> --></small>
<div class="entry">
<?php the_content(__('Read the rest of this entry »', 'kubrick')); ?>
</div>
<p class="postmetadata"><?php the_tags(__('Tags:', 'kubrick') . ' ', ', ', '<br />'); ?> <?php printf(__('Posted in %s', 'kubrick'), get_the_category_list(', ')); ?> | <?php edit_post_link(__('Edit', 'kubrick'), '', ' | '); ?> <?php comments_popup_link(__('No Comments »', 'kubrick'), __('1 Comment »', 'kubrick'), __('% Comments »', 'kubrick')); ?></p>
</div>
<?php endwhile; ?>
<div class="navigation">
<div class="alignleft"><?php next_posts_link(__('« Older Entries', 'kubrick')) ?></div>
<div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'kubrick')) ?></div>
</div>
<?php else : ?>
<h2 class="center"><?php _e('Not Found', 'kubrick'); ?></h2>
<p class="center"><?php _e('Sorry, but you are looking for something that isn’t here.', 'kubrick'); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<?php get_footer(); ?>
</td>
</tr>
<tr>
<td><img src="layout/layer_unten.PNG"></td>
</tr>
<tr>
<td height="20"></td></tr>
</table>
</body>
</html>
</tr>
</table>
</body>
</html>
Alles anzeigen
Mit freundlichen Grüssen
Pks