urbansamurai
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Javacript and WordPress 2.8.2 dashboardI have the same problem. The dashboard won’t load properly and the widgets can’t be moved. Any fixes for this?
Forum: Fixing WordPress
In reply to: Custom Page ProblemsOkay, I wasn’t aware there was that much work involved. Are step by step instructions out of the question? Is it just the page file I have to edit or the style sheet as well? If it’s just the page file could you maybe write the changes out for me so I could do it myself. Sorry for being a pain, but I really would like to get this sorted.
Forum: Fixing WordPress
In reply to: Custom Page ProblemsForgive my ignorance. I think you are assuming I know code when I know next to nothing about it. Can you please go through this step by step? Cheers for your help, I really appreciate it.
Forum: Fixing WordPress
In reply to: Custom Page ProblemsThe page is live. Here’s the link:http://urbansamurai.org.uk/urban-samurai-store
Forum: Fixing WordPress
In reply to: Custom Page ProblemsHere is the link to the custom page in question:http://urbansamurai.org.uk/urban-samurai-store/
As you can see I can’t fit all the content in. I need the space were the side bar is.
Here’s the code for the page file if it helps. Do I need to add code to this? You will also see I have already edited it, taking out sidebar, comments and footer.
<?php
/*
Template Name: store
*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><div class=”article-top”></div>
<div class=”article” id=”post-<?php the_ID(); ?>”>
<h1>
<?php the_title(); ?>
</h1>
<?php the_content(‘Learn more »’); ?>
<?php link_pages(‘<p>Pages: ‘, ‘</p>’, ‘number’); ?>
<?php edit_post_link(‘Edit page’,'<p>’,'</p>’); ?>
</div>
<div class=”article-bottom”></div>
<?php endwhile; endif; ?>
</div>
<div style=”clear:both;”></div>
</div>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body></html>Forum: Themes and Templates
In reply to: Adding extra sidebarThanks for replying abovegrnd but I just went ahead and changed my theme to something a bit more functional – at least I think it is. Perhaps you can tell me if I can achieve the same sort of layout with the original theme?