Wordpress novice needs help

Soldato
Joined
19 Oct 2002
Posts
2,520
Location
South London
hello all i've just started using wordpress which i've never used before and have a little problem

I won't to add a new page like the ones i all ready have with links on top of page but when added it overlaps the tile of page so wondered what part of the html do i change as don't have a clue when it comes to html

17pz6s.jpg


1zgxruw.jpg


Link
 
Ok well in header.php (Which will be in wp_content/themes/primepress or something along those line) and at around line 37 you'll see

<ul class="menu">
<?php include (TEMPLATEPATH . '/main-menu.php'); ?>
</ul>

That is the bit that posts all your pages - there is going to be issues if you want edit this

if you want to edit the site description you'll need to edit line 28 and 31

<p class="description"><?php bloginfo('description'); ?></p>

which is the description, do you know how you'd like to fix the problem, how would you like it to look?
 
Cheers for the info found out you can edit the custom css and place code in there which then gives you the option to add extra space
 
Last edited:
Back
Top Bottom