Theme doesn't work. |
Theme doesn't work. |
May 27 2006, 12:25 AM
Post
#1
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 72 Joined: Mar 2006 Member No: 386,570 |
I've followed all the tutorials I could find [[I've done it one way, it didn't work so I restarted everything and did another]] but my theme or layout is still not working. Nothing even shows up. I know it's gonna be a long post but these are my codes. As my Style.css i have:
QUOTE /* Theme: Unscripted Beauty Description: The models have a weird beauty to them. =)) Theme URI: http://www.LUVRxGURL.orgfree.com/ Author: Rena Marie™ Author URI: http://www.LUVRxGURL.orgfree.com/ */ body { font: 8pt/160% tahoma, helvetica, sans-serif; text-align: center; background: #A9A9A9; cursor: default; margin: 0; padding: 0; color: #CECECE; } a:link, a:visited, a:active { text-decoration: none; color:#E5E5E5 font-size: 8pt; } a:hover { padding: 0 0 5px 0; text-decoration: underline; } /* Headers */ h2 { padding: 0 0 15px 60px; color: #FFFFFF; font: bold 12pt georgia, tahoma, helvetica, sans-serif; text-transform: lowercase; } h3 { margin: 0 0 -15px 10px; padding: 3px 0 5px 5px; font: 10pt georgia, tahoma, helvetica, sans-serif; list-style-type: none; } /* Layout */ #container { width: 693px; margin: 0 auto; background:url(Images/Bg.png) repeat-y; } #top { height: 604px; background:url(Images/Top.png); } #nav { text-align: justify; float: right; width: 190px; } #content { float: left; text-align: justify; padding-left: 20px; width: 400px; } #footer { clear: both; height: 103px; background:url(Images/Footer.png); } #footer p { color: #F26D7D; text-align: left; font-weight: bold; padding-left: 50px; margin-bottom: 0; line-height: 120%; } #footer a, #footer a:link, #footer a:visited { color: #F26D7D; } /* Sidebar */ #navcontainer { padding-top: 5px; } #navcontainer ul { margin: 50px; padding: 0 0 0 0px; list-style-image:url(Images/List.png); } #navlist a, #navlist a:link, #navlist a:visited { color: #9E5267; text-transform: uppercase; font-size: 7pt; } #navlist li a:hover { color: #855E79; text-decoration: none; background: none; } Header: QUOTE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title> <?php bloginfo('Unscripted Beauty'); ?> <?php wp_title(' » ',display); ?> <? php if(is_search()) { ?> » Search Results for <?php echo wp_specialchars($s); ?><?php } ?> </title> <link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href=<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href=<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/rss+xml" title="Subscribe to <?php bloginfo('name'); ?>" href=<?php bloginfo('atom_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <meta content="text/html; charset=iso-8859-1" http-equiv="Content-Type" /> <link type="text/css" href="style.css" rel="stylesheet" /> <meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo('charset'); ?>" /> </meta><meta name="generator" content="Wordpress <?php bloginfo('version'); ?>" /> </meta><meta name="description" content="<?php bloginfo('description'); ?>" /> <link rel="stylesheet" type="text/css" media="screen" href="<?php bloginfo('stylesheet_url'); ?>" /> <?php wp_head(); ?> </head> <body> <div id="container"> <div id="top"> </div> <div id="nav"> <div id="navcontainer"> <!-- Edit Sidebar here --> <h3><img src="Images/Music.png" /></h3> <ul> </ul> <h3><img src="Images/Navigation.png" /></h3> <ul> <li><a href="#">Blog.</a></li> <li><a href="#">News.</a></li> <li><a href="#">Downloads.</a></li> <li><a href="#">Pictures.</a></li> </ul> <h3><img src="Images/Links.png" /></h3> <ul> <li><a href="http://www.myspace.com/darkangel_69">Myspace.</a></li> <li><a href="http://www.neopets.com/refer.phtml?username=xo_Darkangel_ox">Neopets. =))</a></li> <li><a href="http://www.blogring/index.php?refer=DEADLYxKiSSES">Blogring.</a></li> <li><a href="http://www.createblog.com">Createblog.</a></li> </ul> <!-- End edit --> </div></div> My footer is: QUOTE <div id="footer"><p> Content <a href="http://whatiscopyright.org/" title="What is Copyright?">©</a> <!-- Edit your name below --> Rena Marie™ <!-- End edit --> <!-- Stop Editing --> . Design <a href="http://whatiscopyright.org/" title="What is Copyright?">©</a> <a href="http://LUVRxGURL.orgfree.com/" title="Design by Rena">Rena Marie</a>. <a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Strict">XHTML 1.0</a> & <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS">CSS</a> </p> </div></div><?php wp_footer(); ?></body></html> Index: QUOTE <?php get_header(); ?> <div id="content"> <?php include (TEMPLATEPATH . '/TheLoop.php'); ?> </div> <?php get_footer(); ?> And I have The Loop and thats: QUOTE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=shift_jis" /> <title>Untitled Document</title> </head> <?php if (have_post()) { ?> <?php while (have posts()) { the_post(); ?> <?php the_ID(); ?> <?php the_permalink() ?> <?php the_title() ?> <?php the_time('F jS, Y') ?> <?php comments_popup_link('0 Comments', '1 Comment', '%Comments'); <?php the_content(""); ?> <?php } ?> <?php } else { ?> Nothing here. You messed up. Try again. =P <?php } ?> <body> </body> </html> Can anyone figure out whats wrong with my WordPress? My actual worpress is here btw. |
|
|
|
![]() |
May 27 2006, 11:49 AM
Post
#2
|
|
|
Senior Member ![]() ![]() ![]() Group: Member Posts: 72 Joined: Mar 2006 Member No: 386,570 |
Sorry for the double post but Ok so this is what is's supposed to look like. Here. But the images are off. Except for the sidebar...I followed what toya said on AIM and sorry for taking up even more space but these are my codes now.
Style.css: QUOTE /* Theme: Unscripted Beauty Description: The models have a weird beauty to them. =)) Theme URI: http://www.LUVRxGURL.orgfree.com/ Author: Rena Marie™ Author URI: http://www.LUVRxGURL.orgfree.com/ */ body { font: 8pt/160% tahoma, helvetica, sans-serif; text-align: center; background: #A9A9A9; cursor: default; margin: 0; padding: 0; color: #CECECE; } a:link, a:visited, a:active { text-decoration: none; color:#E5E5E5 font-size: 8pt; } a:hover { padding: 0 0 5px 0; text-decoration: underline; } /* Headers */ h2 { padding: 0 0 15px 60px; color: #FFFFFF; font: bold 12pt georgia, tahoma, helvetica, sans-serif; text-transform: lowercase; } h3 { margin: 0 0 -15px 10px; padding: 3px 0 5px 5px; font: 10pt georgia, tahoma, helvetica, sans-serif; list-style-type: none; } /* Layout */ #container { width: 693px; margin: 0 auto; background:url("http://www.freewebs.com/taintedxmemories/Picz/Bg.png") repeat-y; } #top { height: 604px; background:url("http://www.freewebs.com/taintedxmemories/Picz/Top.png"); } #nav { text-align: justify; float: right; width: 190px; } #content { float: left; text-align: justify; padding-left: 20px; width: 400px; } #footer { clear: both; height: 103px; background:url("http://www.freewebs.com/taintedxmemories/Picz/Footer.png"); } #footer p { color: #F26D7D; text-align: left; font-weight: bold; padding-left: 50px; margin-bottom: 0; line-height: 120%; } #footer a, #footer a:link, #footer a:visited { color: #F26D7D; } /* Sidebar */ #navcontainer { padding-top: 5px; } #navcontainer ul { margin: 50px; padding: 0 0 0 0px; list-style-image:url("http://www.freewebs.com/taintedxmemories/Picz/List.png"); } #navlist a, #navlist a:link, #navlist a:visited { color: #9E5267; text-transform: uppercase; font-size: 7pt; } #navlist li a:hover { color: #855E79; text-decoration: none; background: none; } Header: QUOTE <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title>Unscripted Beauty</title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please --> <style type="text/css" media="screen"> @import url( <?php bloginfo('stylesheet_url'); ?> ); </style> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php //comments_popup_script(); // off by default ?> <?php wp_head(); ?> </head> <body> <div id="rap"> <h1 id="header"><a href="<?php bloginfo('url'); ?>/"><?php bloginfo('name'); ?></a></h1> <div id="content"> <!-- end header --> Sidebar: QUOTE <div id="nav"> <div id="navcontainer"> <!-- Edit Sidebar here --> <h3><img src="http://www.freewebs.com/taintedxmemories/Picz/Music.png" /></h3> <ul> <iframe src="radio.blog/index.php" name="radio" scrolling="no" frameborder="0" width="130" height="85"></iframe ></ul> <h3><img src="http://www.freewebs.com/taintedxmemories/Picz/Navigation.png" /></h3> <ul> <li><a href="#">Blog.</a></li> <li><a href="#">News.</a></li> <li><a href="#">Downloads.</a></li> <li><a href="#">Pictures.</a></li> </ul> <h3><img src="http://www.freewebs.com/taintedxmemories/Picz/Links.png" /></h3> <ul> <li><a href="http://www.myspace.com/darkangel_69">Myspace.</a></li> <li><a href="http://www.neopets.com/refer.phtml?username=xo_Darkangel_ox">Neopets. =))</a></li> <li><a href="http://www.blogring/index.php?refer=DEADLYxKiSSES">Blogring.</a></li> <li><a href="http://www.createblog.com">Createblog.</a></li> </ul> Index QUOTE <?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_date('','<h2>','</h2>'); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3> <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div> <div class="storycontent"> <?php the_content(__('(more...)')); ?> </div> <div class="feedback"> <?php wp_link_pages(); ?> <?php comments_popup_link(__('Comments (0)'), __('Comments (1)'), __('Comments (%)')); ?> </div> </div> <?php comments_template(); // Get wp-comments.php template ?> <?php endwhile; else: ?> <p><?php _e('Nothing. Sorry. Thanks for trying.'); ?></p> <?php endif; ?> <?php posts_nav_link(' — ', __('« Previous Page'), __('Next Page »')); ?> <?php get_footer(); ?> And footer: QUOTE </div> <?php get_sidebar(); ?> <div id="footer"><p> Content <a href="http://whatiscopyright.org/" title="What is Copyright?">©</a> <!-- Edit your name below --> Rena Marie™ <!-- End edit --> <!-- Stop Editing --> . Design <a href="http://whatiscopyright.org/" title="What is Copyright?">©</a> <a href="http://LUVRxGURL.orgfree.com/" title="Design by Rena">Rena Marie</a>. <a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Strict">XHTML 1.0</a> & <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS">CSS</a> </p> </div></div><?php wp_footer(); ?></body></html> </body> </html> Any idea what's wrong now? And sorry for so many questions. >< |
|
|
|
TAiNTEDxMEMORiES Theme doesn't work. May 27 2006, 12:25 AM
toyo loco Which template did you edit? If you edited the cla... May 27 2006, 12:34 AM
TAiNTEDxMEMORiES There were images with it but I think my host has ... May 27 2006, 12:46 AM
toyo loco I think you should just turn the images on and hav... May 27 2006, 04:32 PM
TAiNTEDxMEMORiES I'm just gonna give up and find some other blo... May 27 2006, 06:56 PM
toyo loco Its not wasting my time at all, just because you h... May 27 2006, 09:12 PM![]() ![]() |