i also have a other problem… i cant get the website in the middle
I have converted a html webpage to a wordpress theme.
what tutorial did you foloow?
have you studied:
http://codex.ww.wp.xz.cn/Theme_Development
make sure your main template index.php has the loop.
http://codex.ww.wp.xz.cn/The_Loop
about centering the theme:
edit style.css of your theme;
try and remove
min-width:779px; max-width: 1003px; margin: 40px 0;
from this line:
body { min-width:779px; max-width: 1003px; margin: 40px 0; padding: 0; font-family: "Book Antiqua", Georgia, Serif; font-size: 90%; background-color: #041940; color: #E6CDA5 }
i didn’t follow any tutorial.. just placed header in header main in index and page , sidebar in sidebar, and footer in footer..
I will try to insert the wordpress loop and take a look at the tutorial u gave me ..
I’ll come back to you with the results
Thank u
I have a question abouth the loop/….
where do i have to insert the loop ??
this is what i have so far in my inderx and in my page
<?php get_header(); ?>
<div id=”main”>
<div id=”entry-area”>
<!–###INHALT### Start–>
<!–###INHALT### Stop–>
</div>
<div style=”clear: both;”> </div> <!– clears the sidebar and entry area divs – do not remove –>
<?php
get_sidebar();
get_footer();
?>
<!--###INHALT### Start-->
loop goes here
<!--###INHALT### Stop-->
is the wordpress loop just the same as in the codex?? can i just copy and past or do i have to change some lines??
i tried to copy but maby i didn’t copy the right thing tough