• lotusdove

    (@lotusdove)


    I am designing a page for a friend, but I am limited in my knowledge of CSS so when he asked me to make some design changes, my eyes crossed.

    This is the temporary site: https://surgeon-poet.com/wordpress/

    How do I remove the blue the title of the pages on the pages, i.e., the “HOME” in blue?

    How do I move the top navigation over so it lines up with the frame? I thought I would be able to edit the design in dreamweaver (I know some HTML), but it opens all the associated sheets separately and I have to code by hand.

    Any tips for a newbie?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter lotusdove

    (@lotusdove)

    Michael

    (@alchymyth)

    before you edit any theme files, make a backup copy.

    if you do not have a page.php in your theme, you could try and make a copy of index.php and save it as page.php –
    then edit page.php and look for something similar to <h2><?php the_title(); ?></h2>
    deleting it should get rid of the title in pages.

    to move the nav to the left:

    in style.css, find this:

    #nav ul{
        list-style: none;
        overflow: hidden;
        zoom:1;
        display: inline;
        float: left;
        margin-right: 120px;
        margin-left: 80px;
        padding-top: 9px;
    }

    try and change ‘margin-left: 80px;’ to ‘margin-left: 30px;’
    or to a value that makes the nav aligned with the frame.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to I remove my top navigation bar?’ is closed to new replies.