How to remove some stuff from the group list apperance Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

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.
3 posters

    How to remove some stuff from the group list apperance

    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty How to remove some stuff from the group list apperance

    Post by SpyroDragon Tue 2 Aug - 13:31

    Is there a way to make this group list
    look like the member list?


    Group list

    How to remove some stuff from the group list apperance 110


    Member list
    How to remove some stuff from the group list apperance 210
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by Ace 1 Tue 2 Aug - 13:57

    So you want everything but the group members and group moderator to be gone.
    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SpyroDragon Tue 2 Aug - 23:03

    Yes.
    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SpyroDragon Mon 8 Aug - 4:20

    Bump
    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SpyroDragon Thu 18 Aug - 4:42

    Bump
    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SpyroDragon Fri 19 Aug - 9:43

    Bump
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by Ace 1 Thu 25 Aug - 1:47

    I forgot about this topic, sorry.

    You can this via CSS.

    Code:
    form[action^="/g"]:first-child { display: none; }
    form[action^="/g"] table tbody tr:first-child { opacity: 0; }

    Add that and you're good.
    SpyroDragon
    SpyroDragon
    Forumember


    Posts : 462
    Reputation : 2
    Language : English

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SpyroDragon Fri 26 Aug - 3:14

    That seemed to have done nothing Q,. .,Q
    http://tlos.openu2.com/g27-z8-crossfire
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51500
    Reputation : 3523
    Language : English
    Location : United States

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by SLGray Fri 26 Aug - 3:41

    Is your forum version phpBB 2 or 3?

    Have you tried removing what you do not want from the groupcp_info_body template?



    How to remove some stuff from the group list apperance Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ace 1
    Ace 1
    Helper
    Helper


    Male Posts : 843
    Reputation : 64
    Language : English - French?
    Location : Druid Hill Park

    How to remove some stuff from the group list apperance Empty Re: How to remove some stuff from the group list apperance

    Post by Ace 1 Fri 26 Aug - 4:02

    @SpyroDragon

    AP >> Display >> Colors >> CSS Stylesheet

    Code:
    form[action^="/g"]:first-child { display: none !important; }
    form[action^="/g"] table tbody tr:first-child { opacity: 0 !important; }