• Resolved nicesites

    (@nicesites)


    Hi. I am trying to remove entirely the menu of catagories, posts, etc. etc. from my wordpress. I just want pages. No menus

    to see what I am trying to do:

    http://www.dino.nicesites.org

    I like the tabbed thing for my pages, but below where it says “Home” No catagories, I’d like that gone. How can I do this?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Open style.css in your theme directory and find:

    #secondary, #third{
    	background-color:  ;
    	background-image: url(/);
    	background-repeat: repeat;
    	text-align:left;
    	padding: 0px;
    	border: 1px solid #1A1A1A;
    	SP_GRADIENT
    }

    add display:none; so it looks like this:

    #secondary, #third{
           display:none;
    	background-color:  ;
    	background-image: url(/);
    	background-repeat: repeat;
    	text-align:left;
    	padding: 0px;
    	border: 1px solid #1A1A1A;
    	SP_GRADIENT
    }

    You have some other ugly looking stuff in there, but maybe this change will do what you want.

    It might be easier to remove the actual coding for the menus, etc from the single.php, menu.php or wherever else it is…instead of changing the css…just remove the lines you don’t want from the actual .php files and they won’t show up.

    Thread Starter nicesites

    (@nicesites)

    FIGARO YOU KICK BUTT! Thanks a million man!!!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove menus?’ is closed to new replies.