I'm making a portfolio site (http://maartjevanlaar.nl) for my little sister as a surprise. I'm using the Fullscreen theme: http://graphpaperpress.com/themes/fullscreen/
Everything is working fine except for one thing: The arrow/next page link isn't actually pointing to the next page.
This blog is an example of a working arrow/next page: http://meicw.com/blog/
I think I should alter the code in the header.php, since this is the only code that refers to the arrow gif. But I don't know what I have to change :S
<!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" <?php language_attributes(); ?>>
<head profile="http://gmpg.org/xfn/11">
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
<title><?php wp_title('«', true, 'right'); ?> <?php bloginfo('name'); ?></title>
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url') ?>" />
<link rel="stylesheet" href="<?php bloginfo("template_directory"); ?>/css/print.css" type="text/css" media="print" />
<!--[if IE]><link rel="stylesheet" href="<?php bloginfo("template_directory"); ?>/css/ie.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="<?php bloginfo("template_directory"); ?>/css/ie-nav.css" type="text/css" media="screen, projection" /><![endif]-->
<?php if (is_home()) : ?>
<!--[if IE]><link rel="stylesheet" href="<?php bloginfo("template_directory"); ?>/css/no-scroll.css" type="text/css" media="screen, projection" /><![endif]-->
<?php endif; ?>
<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php if(is_home()) { ?>
<style type="text/css"> body {overflow: hidden;} </style>
<?php } ?>
<?php wp_head(); ?>
</head>
<body>
<!-- Begin Homepage Navigation -->
<?php if (is_home()) : ?>
<div class="home">
<div id="branding">
<div class="brand-wrap">
<h2><a href="<?php bloginfo('home'); ?>/" title="Home"><?php bloginfo('name'); ?></a></h2>
<div class="description"><?php bloginfo('description'); ?></div>
<?php include (TEMPLATEPATH . '/nav.php'); ?>
<div class="go-left"><a href="#"><img src="<?php bloginfo("template_directory"); ?>/images/back.gif" class="go-left" alt="back" /></a></div>
<div class="go-right"><a href="#"><img src="<?php bloginfo("template_directory"); ?>/images/forward.gif" class="go-right" alt="forward" /></a></div>
</div>
</div>
<?php else: ?>
<!-- Begin Interior Page Navigation -->
<div class="container">
<!-- Begin Masthead -->
<div id="masthead">
<h2><a href="<?php bloginfo('home'); ?>/" title="Home"><?php bloginfo('name'); ?></a></h2>
<div class="description"><?php bloginfo('description'); ?></div>
<?php include (TEMPLATEPATH . '/nav.php'); ?>
</div>
<?php endif; ?>
Hoping for some help!