So here is the header.php:
<body>
<div class="wrapper">
<div class="page">
<div class="header-container">
<div class="header"><!--HEADER-->
<h1 class="logo"><!--LOGO-->
<a href="******" title="******" class="******">
<strong>******</strong>
<img src="<?php bloginfo('template_directory'); ?>/******" alt="******" /></a>
</h1>
<div class="nav-container"><!--NAVIGATION-->
<ul id="nav">
<li class="level0 nav-1 first level-top parent">
<a href="******" class="level-top">
<span>******</span></a>
</li>
<li class="level0 nav-2 level-top parent">
<a href="******" class="level-top">
<span>******</span></a>
</li>
<li class="level0 nav-3 level-top">
<a href="******" class="level-top">
<span>******</span></a>
</li>
<li class="level0 nav-4 last level-top">
<a href="******" class="level-top">
<span>******</span></a>
</li>
<li class="level0 nav-5 last level-top">
<a href="******" class="level-top">
<span>******</span></a>
</li>
<li class="level0 nav-6 last level-top">
<a href="******" class="level-top">
<span>******</span></a>
</li>
</ul>
</div>
</div>
<div class="quick-access"><!--QUICK-ACCESS-->
<p class="welcome-msg">Herzlich willkommen in unserem Online-Shop!</p>
<ul class="links">
<li class="first">
<a href="https://localhost.de/magento/index.php/customer/account/" title="Mein Benutzerkonto">Mein Benutzerkonto</a>
</li>
<li>
<a href="https://localhost.de/magento/index.php/checkout/cart/" title="Mein Warenkorb" class="top-link-cart">Mein Warenkorb</a>
</li>
<li class="last">
<a href="https://localhost.de/magento/index.php/customer/account/login/" title="Anmelden">Anmelden</a>
</li>
</ul>
</div>
<div class="top-bar"><!--TOP-BAR-->
<form id="search_mini_form" action="https://localhost.de/magento/index.php/catalogsearch/result/" method="get">
<div class="form-search">
<label for="search">Suche</label>
<input id="search" type="text" name="q" value="" class="input-text" maxlength="128"/>
<button type="submit" title="Los" class="button"><span><span>Los</span></span></button>
<div id="search_autocomplete" class="search-autocomplete">
</div>
<script type="text/javascript">
//<![CDATA[
var searchForm = new Varien.searchForm('search_mini_form', 'search', '');
searchForm.initAutocomplete('https://localhost.de/magento/index.php/catalogsearch/ajax/suggest/', 'search_autocomplete');
//]]>
</script>
</div>
</form>
</div>
</div>
Here is the index.php:
<?php get_header(); ?>
<div class="main-container col1-layout">
<div class="main">
<div class="col-main">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h2><?php the_title(); ?></h2>
<div class="entry">
<?php the_content(); ?>
</div>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>
The footer.php:
`<div class=”footer”>
<div class=”f-right”>
<img src=”<?php bloginfo(‘template_directory’); ?>*****” class=”*****” alt=”*****”/>
</div>
<div class=”f-left”>
<ul>
</ul>
<ul>
<li class=”last”><a href=”*****”>*****</a>
<li><a href=”*****”>*****</a></li>
<li><a href=”*****”>*****</a></li>
<li><a href=”*****”>*****</a></li>
<li><a href=”*****”>*****</a></li>
<li><a href=”*****”>*****</a></li>
<li><a href=”*****”>*****</a></li>
</ul>
<ul class=”links”>
<li class=”first last”>
<a title=”*****” href=”*****”>Kontakt</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>`
And here the style.css. I tried to compile the important ones but there is still a lot of redundant coding:
[CSS moderated. Please use a pastebin.]