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.

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

4 posters

Go down

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

Post by Edward Kenway December 26th 2014, 2:30 pm

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
avatar
Edward Kenway
New Member

Posts : 19
Reputation : 1
Language : Swedish

http://dansankan@hotmail.com

Back to top Go down

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

Post by TheCrow December 26th 2014, 2:39 pm

Can you send us the forum URL please?
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

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

Post by Edward Kenway December 26th 2014, 3:01 pm

avatar
Edward Kenway
New Member

Posts : 19
Reputation : 1
Language : Swedish

http://dansankan@hotmail.com

Back to top Go down

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

Post by TheCrow December 26th 2014, 3:09 pm

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 December 26th 2014, 5:40 pm; edited 1 time in total
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

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

Post by Edward Kenway December 26th 2014, 3:15 pm

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

http://dansankan@hotmail.com

Back to top Go down

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

Post by Edward Kenway December 26th 2014, 3:25 pm

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)
avatar
Edward Kenway
New Member

Posts : 19
Reputation : 1
Language : Swedish

http://dansankan@hotmail.com

Back to top Go down

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

Post by TheCrow December 26th 2014, 5:23 pm

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
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

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

Post by Edward Kenway December 26th 2014, 7:49 pm

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!!
avatar
Edward Kenway
New Member

Posts : 19
Reputation : 1
Language : Swedish

http://dansankan@hotmail.com

Back to top Go down

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

Post by Ramdaman December 26th 2014, 8:00 pm

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

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

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

http://ndihme.forumotion.com/forum

Back to top Go down

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

Post by TheCrow December 26th 2014, 11:03 pm

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
TheCrow
TheCrow
Manager
Manager

Male Posts : 6898
Reputation : 794
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

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

Post by inallsorts December 27th 2014, 7:44 am

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;
}
avatar
inallsorts
Forumember

Posts : 246
Reputation : 8
Language : English

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum