Image next to description + Double category titles + rename titles + hide "view posts" 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.
2 posters

    Image next to description + Double category titles + rename titles + hide "view posts"

    avatar
    Netty 88
    Forumember


    Posts : 68
    Reputation : 1
    Language : Hungarian

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Image next to description + Double category titles + rename titles + hide "view posts"

    Post by Netty 88 January 16th 2015, 10:39 pm

    Hello!

    Can somebody help me?

    1.)
    How can I remove the second category title? I need only the first one, the second is unnecessary. --> solved, thx for Duke3 Smile

    2.) How can I put the description next to the image?

    3.)
    Is there any way to rename those titles?

    4.)
    There is the numbers of topics and posts, can I hide them? Or move to under the last posts?

    5.)
    Is it possible to hide the "View posts since last visit", "View your posts" and "View unanswered posts"?

    Like this:
    https://i.servimg.com/u/f38/19/10/89/75/save0111.jpg
    https://i.servimg.com/u/f38/19/10/89/75/save0210.jpg

    This is my forum: http://probaoldal22.hungarianforum.com/
    It's phpbb3

    Thx!
    (p.s.: sorry for my english and if it's not the right category ^^')


    Last edited by Netty 88 on January 17th 2015, 6:58 pm; edited 1 time in total
    avatar
    Guest
    Guest


    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by Guest January 16th 2015, 11:21 pm

    hello 2nd is not category this is forum section name u can change it

    Admin CP >> Click On( Genral Tab ) >> Forum >> Categories and forums >> See There And Change Forum Name

    avatar
    Netty 88
    Forumember


    Posts : 68
    Reputation : 1
    Language : Hungarian

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by Netty 88 January 17th 2015, 6:56 pm

    Hello Duke3!

    1.) You're right! Thank you very much! Smile
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by TheCrow January 17th 2015, 8:23 pm

    Hello,

    For 2. Add this in your CSS:
    Code:
    .centered {
    width: 50px!important;
    text-align: center;opacity:0;
    }
    table.ipbtable td.icon {
    height: 38px;
    vertical-align: top;
    width: 60%!important;
    }
    .forumdesc img{float:left;padding-right:5px;}

    For 3. To rename the widget titles you need to go to : Admin Panel > Display > Templates > Portal
    and edti ( Edit ) the widgets you want to change their title. As soon as you edit them you will see in the templates somewhere the below:
    Code:
    <div class="h3">{.......}</div>
    What you have to do is only replace the inner code to what you want. For example
    Code:
    <div class="h3">How many members are online</div>
    To all the widgets you want.

    For 4. This is done with the code you added to number 2 solution i gave you above.

    For 5. Add this in your CSS:
    Code:
    ul.linklist{display:none;}


    Luffy



    Image next to description + Double category titles + rename titles + hide "view posts" Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    avatar
    Netty 88
    Forumember


    Posts : 68
    Reputation : 1
    Language : Hungarian

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by Netty 88 January 17th 2015, 9:38 pm

    Hello Luffy!

    2.) + 3.) Thank you very much Smile

    4.) Now I have an empty space there. Is itt possible to hide it?
    See: https://i.servimg.com/u/f38/19/10/89/75/save0311.jpg

    5.) I added that code, but it doesn't work Sad
    TheCrow
    TheCrow
    Manager
    Manager


    Male Posts : 6923
    Reputation : 795
    Language : Greek, English

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by TheCrow January 17th 2015, 10:08 pm

    Hello,

    For 4.) Find this in your CSS:
    Code:
    .centered {
    width: 50px!important;
    text-align: center;opacity:0;
    }
    remove it and add this:
    Code:
    .centered {
    text-align: center;
    width: 50px!important;
    font-size: 0px;
    }

    For 5.) Add this insted:
    Code:
    ul.linklist{display:none!important;}


    Luffy



    Image next to description + Double category titles + rename titles + hide "view posts" Thecro10
    Forum of the Forums

    Forumotion Rules | Tips & Tricks |
    FAQ | Did you forget your password?



    *** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
    No support via PM!
    avatar
    Netty 88
    Forumember


    Posts : 68
    Reputation : 1
    Language : Hungarian

    Image next to description + Double category titles + rename titles + hide "view posts" Empty Re: Image next to description + Double category titles + rename titles + hide "view posts"

    Post by Netty 88 January 18th 2015, 12:17 am

    4.) It works, thank you! ^^

    5.) This not Sad