Hallöle!
hab viel im Forum gesucht, aber leider nix passendes gefunden.
Simples Problem:
Ich hab eine statische Seite erstellt auf der ich eine Bildergalerie erstellen will.
Hierzu hab ich meine Page.php kopiert und das Ergebniss fuer die neue Seite als Seitentemplate benutzt. Bis hierher alles prima gelaufen :-) siehe SY Lauan - Logbuch
Wie man dort sieht hab ich die Sidebars rausgeschmissen, da ich sie dort nicht brauche.
Abba: Nun haette ich natuerlich das Post-Fenster groesser. Und genau da hab ich grad nen Pfropfen im Gehirn.
Ich als Rookie wuerde mir jetzt die style.css hernehmen, sie kopieren und speziell fuer die neue Seite anpassen. Nur .... wie mache ich es, das dann die neue css nur fuer diese Seite aufgerufen wird????
oder geht das alles irgendwie ganz anders??ß Wie gesagt .. ich will nur die postbox vergroessern.
hier mal der code:
<?php
/*
Template Name: Lauan.php
*/
?>
<?php get_header(); ?>
<div id="page_container">
<div id="postcol" class="fixheight">
<div id="pc_t" class="fixheight">
<div id="pc_r" class="fixheight">
<div id="pc_b" class="fixheight">
<div id="pc_l" class="fixheight">
<div id="pctl" class="fixheight">
<div id="pctr" class="fixheight">
<div id="pcbr" class="fixheight">
<div id="pcbl" class="fixheight">
<div id="pc_c" class="fixheight">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class="postbox">
<div class="right">
<div class="bottom">
<div class="left">
<div class="post_title">
<div class="top">
<div class="right">
<div class="left">
<div class="tl">
<div class="tr">
<h2 id="post-<?php the_ID(); ?>" class="title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
</div>
</div></div></div></div></div> <?php /* post_title */ ?>
<div class="br">
<div class="bl">
<div class="content"> <?php the_content(); ?>
</div></div></div></div></div></div></div> <?php /* postbox */ ?>
<?php endwhile; ?>
<div class="navigation">
</div> <?php /* navigation */ ?>
<div style="clear: both"></div>
<?php else : ?>
<h2 class="center">nix gefunden </h2>
<p class="center"><?php _e("Sorry, gibt es hier nicht."); ?></p>
<?php endif; ?>
<?php get_footer(); ?>
Alles anzeigen
thx a lot Micha