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.

Can i Delete the word "Forum"

+2
Sanket
WRSJ
6 posters

Go down

Solved Can i Delete the word "Forum"

Post by WRSJ September 21st 2010, 6:36 am

i wanted to remove the word "Forum" on each category on my forum...

here's the picture:

Can i Delete the word "Forum" Wrsj710

thanks! :]


Last edited by WRSJ on September 21st 2010, 6:55 am; edited 1 time in total
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Sanket September 21st 2010, 6:50 am

Hi, your title not being specific and therefore not facilitating research via the search option, I'm not answering (nor is any other member ) until you change your title to a more specific one, related to your problem

Why do we ask you to use explicit titles
Code:
The forum's search engine bases its research on keywords found in [b]topic titles[/b].

When you do a research, do you use "help", "urgent", "problem", "SOS" or "question" as keywords to look for topics about your problem/question?

Certainly not!  So this is why it is important to use titles [b]related to your problem/question[/b].  Doing this makes the researches much easier for visitors who use the search engine to get an answer to their question.

Thanks for your understanding.

Cordially
Forumotion Staff
Sanket
Sanket
ForumGuru

Male Posts : 48766
Reputation : 2830
Language : English
Location : Mumbai

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by WRSJ September 24th 2010, 3:16 pm

hello! answer this ><
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Guest September 24th 2010, 3:39 pm

Hey yo!, relax, or no one going to help if you like that!.
avatar
Guest
Guest


Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by WRSJ September 24th 2010, 3:57 pm

im sorry.. im just looking forward for the answer XDD lol
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Maki1 September 24th 2010, 4:01 pm

Just put this on every category
Code:

<strong></strong>
Maki1
Maki1
Hyperactive

Male Posts : 2529
Reputation : 442
Language : English »» CSS Stylesheet
Location : The » Support » forum » Section! • No support by PM If you need custom theme please contact me!

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Guest September 24th 2010, 4:03 pm

Maki1 wrote:Just put this on every category
Code:

<strong></strong>

or:
Code:
<span></span>
Smile
avatar
Guest
Guest


Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by WRSJ September 25th 2010, 2:30 am

it didn't worked... T.T
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by !PU! September 25th 2010, 11:09 am

phpbb2 ?

then

Go TO >> Admin Panel >> Display >> Templates >> General >> index_box

Find And Remove This Code ..
Code:
&nbsp;{catrow.tablehead.L_FORUM}&nbsp;

!PU!
!PU!
Forumember

Posts : 64
Reputation : 21
Language : english

http://www.presmurdu.com

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by WRSJ September 25th 2010, 12:19 pm

no.. invision... ^^
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Guest September 25th 2010, 12:57 pm

Put this in your css Smile.

ACP - Display - Colors - CSS Stylesheet Smile.

Code:

.forum {
          display: none;
          }
avatar
Guest
Guest


Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by Guest September 25th 2010, 6:38 pm

I hope we see a screen shot of what the homepage looks like after adding the above CSS rule. Very Happy

Look, I'll save you a broken homepage. You can't remove the word 'Forum' using CSS unless you can live with this solution:
Code:
table.index-box th {background: transparent ! important;}
table.index-box th.forum {visibility: hidden;}
If this isn't what you want, then the only way to get what you want is through javascript code that is beyond the scope of this (free) forum.
avatar
Guest
Guest


Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by WRSJ September 26th 2010, 5:35 am

ok.. it worked already ^^ thanks a lot!!
WRSJ
WRSJ
Forumember

Female Posts : 146
Reputation : 0
Language : English, Korean, Tagalog
Location : Seoul, South Korea

http://wrsj.4rumer.net/

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by URFTV September 26th 2010, 5:58 am

How do I do this for PhpBB2 by using css
URFTV
URFTV
Forumember

Male Posts : 237
Reputation : 0
Language : English
Location : Australia

Back to top Go down

Solved Re: Can i Delete the word "Forum"

Post by RoNo September 26th 2010, 6:34 am

Since that code also removes the
background image... (depending on the theme)

[examples]

Pre-edit...
Can i Delete the word "Forum" Remove_name_forum00


Result using the code above... (image gone with text)
Can i Delete the word "Forum" Remove_name_forum01


Anyone using an Invision theme that has a background
image behind "Forum" text can use the code below
to remove the text without removing the image
Code:
table.ipbtable th.forum {
    text-indent: -9000px;
    text-transform: capitalize;
    }
Admin Panel»Display»Pictures and Colors»Colors»CSS Stylesheet

[Result using this code]

"Forum" text is gone, background image remains
Can i Delete the word "Forum" Remove_name_forum02

Use the code to remove text from just about anything (buttons etc)


Use it with .secondarytitle class for Phpbb2
Code:
.secondarytitle {
   text-indent: -9000px;
   text-transform: capitalize;
   }


Since the issue has been resolved,
this topic is closed.
Can i Delete the word "Forum" Locked1Can i Delete the word "Forum" Lock2 RoNo
Can i Delete the word "Forum" Bullet_blue2 General rules
Can i Delete the word "Forum" Bullet_blue2 Tricks & Tips
Can i Delete the word "Forum" Bullet_blue2 FAQ listing
Can i Delete the word "Forum" Bullet_blue2 For founders who lost their passwords
Can i Delete the word "Forum" Bullet_blue2 About support requests by PM
Can i Delete the word "Forum" Bullet_blue2 Announcements & Updates
RoNo
RoNo
Active Poster

Male Posts : 1270
Reputation : 135
Language : English
Location : Laguna Beach, California

http://bf2mercenaries.forumotion.com/

Back to top Go down

Back to top

- Similar topics

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