The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
3 posters

    How to i remove in the menu, Memberlist, f&q, Groups ect

    avatar
    fubzey
    Forumember


    Posts : 31
    Reputation : 1
    Language : english

    How to i remove in the menu, Memberlist, f&q, Groups ect Empty How to i remove in the menu, Memberlist, f&q, Groups ect

    Post by fubzey October 23rd 2015, 7:29 pm

    Technical Details


    Forum version : #phpBB2
    Position : Founder
    Concerned browser(s) : Google Chrome
    Who the problem concerns : Yourself
    Forum link :

    Description of problem

    title says everything below need to remove as forums is more of a website
    DarkCrowDawn
    DarkCrowDawn
    New Member


    Male Posts : 12
    Reputation : 1
    Language : English

    How to i remove in the menu, Memberlist, f&q, Groups ect Empty Re: How to i remove in the menu, Memberlist, f&q, Groups ect

    Post by DarkCrowDawn October 27th 2015, 1:14 am

    try this code.
    Code:
    a.mainmenu[href="/calendar"], a.mainmenu[href="/search"], a.mainmenu[="/memberlist"], a.mainmenu[href="/f&q"]
      display:none;
    }
    Wealh
    Wealh
    Forumember


    Posts : 69
    Reputation : 6
    Language : English

    How to i remove in the menu, Memberlist, f&q, Groups ect Empty Re: How to i remove in the menu, Memberlist, f&q, Groups ect

    Post by Wealh October 28th 2015, 4:23 am

    DarkCrowDawn wrote:try this code.
    Code:
    a.mainmenu[href="/calendar"], a.mainmenu[href="/search"], a.mainmenu[="/memberlist"], a.mainmenu[href="/f&q"]
      display:none;
    }

    Well, your code won't work since you forgot to add the openning brace and a "href".

    Here are the mistakes:

    a.mainmenu[href="/calendar"], a.mainmenu[href="/search"], a.mainmenu[="/memberlist"], a.mainmenu[href="/f&q"]
     display:none;

    Try this code instead:

    Code:
    a.mainmenu[href="/faq"], a.mainmenu[href="/memberlist"], a.mainmenu[href="/groups"] {
      display: none;
    }

    Spoiler:

      Current date/time is November 11th 2024, 4:26 pm