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. |
|
|
|
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
TAiNTEDxMEMORiES Sorry for the double post but Ok so this is what i... May 27 2006, 11:49 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![]() ![]() |