WordPress Theme Help

iGame

Paragon
Joined
Apr 10, 2010
Messages
1,396
Reaction score
0
FP$
6
Hey everyone, I need a bit of help. I recently purchased the template: http://themeforest.net/item/phenomenon- ... ate/127102

And it included a blog page, so I started coding the template with a little help from google.

So here is my results: http://www.thehostbox.net/blog

My problem here is the navigation, I want it to be the same as the theme, I purchased.

So here is header template :

Code:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8" />
<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>css/reset.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>css/custom.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>css/tipcy.css" type="text/css" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>css/superfish.css" type="text/css" />
<link rel="stylesheet" href="fancybox/jquery.fancybox-1.3.1.css" type="text/css" />
<!--[if IE]>
<script src="js/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
	<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_directory'); ?>css/ie7.css">
<![endif]-->
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/cufon-yui.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.easing.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>js/Harabara.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/superfish.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/css_browser_selector.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.cycle.all.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/fancybox/jquery.fancybox-1.3.1.pack.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.form.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/tipsy.js"></script>
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/bluz.js"></script>
</head>
<body id="sub-page">
<!-- site-wrapper START here -->
<div id="site-wrapper">
  <!-- header START here -->
  <header>
    <!-- container START here -->
    <div class="container">
      <!-- logo START here -->
      <div id="logo">
        <h1><a href="index.html"><img src="<?php bloginfo('template_url'); ?>/images/logo2.png" alt="" /></a></h1>
      </div>
      <!-- logo END here -->
      <div id="login-holder"> <a href="#login-box" class="sml-btn green">Login</a> </div>
      <!-- navigation START here -->
      <ul class="sf-menu">
       <li><a href="index.html">Home</a></li>
        <li><a href="page.html">Company</a>
        <li><a href="services.html">Services</a></li>
        <li><a href="pricing.html">Pricing</a></li>
        <li class="current_page_item"><a href="blog.html">Blog</a>
        <li><a href="contact.html">Contact</a></li>
      </ul>
      <!-- navigation END here -->
      <div id="pagename">
        <div class="inside">
          <h2>Blog</h2>
          <p class="breadcrumbs">You are here : <a href="#">Home</a> / Blog</p>
        </div>
      </div>
    </div>
    <!-- container END here -->
  </header>
  <!-- header END here -->

I need help with the navigations button and making theme work with wordpress and also I want to fix the footer. I can not seem to set the background image for the footer.

Thanks in advance!
 
First off I will need to see the CSS also as that has a huge impact on it.

But the navigation looks fine.

As far as the footer goes, again, I would have to see the CSS.
 
I helped him with the navbar. He had linked the css to the wrong folder and this was the same for the images. If you want to help out with the footer you are welcome, as I am busy for sometime now. 🙂
 
Back
Top Bottom