Remove these ''texts''. How to do it? 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.
4 posters

    Remove these ''texts''. How to do it?

    avatar
    Edward Kenway
    New Member


    Posts : 19
    Reputation : 1
    Language : Swedish

    In progress Remove these ''texts''. How to do it?

    Post by Edward Kenway Fri 26 Dec - 14:30

    First of all thx for all your replies in this support section, you are doing a great job!
     now to my question Mr. Green



    How do I remove these 3 ''texts areas''? I want to have a ''cleaner'' approach. If I remove them I would also like to keep the spacing so the menu buttons doesn't get to close to the forum menu. The spacing should be the same, i just want to remove the texts.

    Remove these ''texts''. How to do it? LGotlVZ
    TheCrow
    TheCrow
    Manager
    Manager


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

    In progress Re: Remove these ''texts''. How to do it?

    Post by TheCrow Fri 26 Dec - 14:39

    Can you send us the forum URL please?



    Remove these ''texts''. How to do it? 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
    Edward Kenway
    New Member


    Posts : 19
    Reputation : 1
    Language : Swedish

    In progress Re: Remove these ''texts''. How to do it?

    Post by Edward Kenway Fri 26 Dec - 15:01

    TheCrow
    TheCrow
    Manager
    Manager


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

    In progress Re: Remove these ''texts''. How to do it?

    Post by TheCrow Fri 26 Dec - 15:09

    Hello,

    Go to: ACP > Display > Templates > General > index_body
    find this: {BOARD_INDEX} and add below it:
    Code:
    <div class="linksopa">
    and then find: <!-- BEGIN switch_user_login_form_footer --> and add above it:
    Code:
    </div>
    Save it and publish the template with Add
    Then go to template named index_box and find:
    Code:
    <span class="gensmall">{LAST_VISIT_DATE}<br />
             {CURRENT_TIME}<br />
             </span>
    and replace it with this:
    Code:
    <div class="linksopa"><span class="gensmall">{LAST_VISIT_DATE}<br />
             {CURRENT_TIME}<br />
             </span></div>
    and save it and publish it with Add

    Then go to CSS and add:
    Code:
    .linksopa{opacity:0;}


    Last edited by Luffy on Fri 26 Dec - 17:40; edited 1 time in total
    avatar
    Edward Kenway
    New Member


    Posts : 19
    Reputation : 1
    Language : Swedish

    In progress Re: Remove these ''texts''. How to do it?

    Post by Edward Kenway Fri 26 Dec - 15:15

    I'm sorry where to i find ACP? Very Happy

    (Edit:) nvm i found it. just a sec
    avatar
    Edward Kenway
    New Member


    Posts : 19
    Reputation : 1
    Language : Swedish

    In progress Re: Remove these ''texts''. How to do it?

    Post by Edward Kenway Fri 26 Dec - 15:25

    Thx for all you support man!
    It removed everything but not the:

    View post since last visit
                 view your post
       view unanswered post


    In the upper right corner (see picture)
    TheCrow
    TheCrow
    Manager
    Manager


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

    In progress Re: Remove these ''texts''. How to do it?

    Post by TheCrow Fri 26 Dec - 17:23

    Yeah that's in the index_box template. Go edit it and find this:
    Code:
    <td class="gensmall" align="right" valign="bottom">
             <!-- BEGIN switch_user_logged_in -->
             <a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
             <a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
             <!-- END switch_user_logged_in -->
             <a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
          </td>
    and replace it with this:
    Code:
    <div class="linksopa"><td class="gensmall" align="right" valign="bottom">
             <!-- BEGIN switch_user_logged_in -->
             <a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
             <a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
             <!-- END switch_user_logged_in -->
             <a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>
          </td></div>
    and save it and publish with Add



    Remove these ''texts''. How to do it? 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
    Edward Kenway
    New Member


    Posts : 19
    Reputation : 1
    Language : Swedish

    In progress Re: Remove these ''texts''. How to do it?

    Post by Edward Kenway Fri 26 Dec - 19:49

    For some reason it didn't work. But it doesn't matter, those links are pretty useful after all and I think I will keep them for now.
    Thx a lot for your help man! you guys are really professional!

    You can archive this Very Happy

    Happy holidays!!
    Ramdaman
    Ramdaman
    Active Poster


    Male Posts : 1590
    Reputation : 99
    Language : English, Albanian, Macedonian, Russian | HTML, CSS
    Location : New York City

    In progress Re: Remove these ''texts''. How to do it?

    Post by Ramdaman Fri 26 Dec - 20:00

    Try placing this code into your CSS Stylesheet: (Administration Panel => Display => Pictures and Colors => Colors => CSS Stylesheet [Tab] )

    Code:
    .gen, .genmed, .gensmall {
      display: none;
    }
    TheCrow
    TheCrow
    Manager
    Manager


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

    In progress Re: Remove these ''texts''. How to do it?

    Post by TheCrow Fri 26 Dec - 23:03

    Ramdaman wrote:Try placing this code into your CSS Stylesheet: (Administration Panel => Display => Pictures and Colors => Colors => CSS Stylesheet [Tab] )

    Code:
    .gen, .genmed, .gensmall {
      display: none;
    }

    Yes but that will remove them completely. He just wanted to remove them and keep the distances. That is why i made it with the templates so i add them all under one element and hide them with opacity 0. The display none and especially for gensmall it will make some other link to disappear also. Wink
    avatar
    inallsorts
    Forumember


    Posts : 246
    Reputation : 8
    Language : English

    In progress Re: Remove these ''texts''. How to do it?

    Post by inallsorts Sat 27 Dec - 7:44

    Edward Kenway wrote:Thx for all you support man!
    It removed everything but not the:

    View post since last visit
                 view your post
       view unanswered post


    In the upper right corner (see picture)

    This simple script will remove as per your above links, and will also remove the following:

    * Today's active topics
    * Today's top 20 posters
    * Overall top 20 posters
    * Delete the forum cookies

    Go to "Administration Panel > Display > Colors > CSS Stylesheet".

    Code:
    ul.linklist {
        display: none;
    }