Topic: HTML Text over Banner.

When viewing my forums in Internet Explorer it puts text over the banner. But it's not there in FireFox.
http://www.Warriors.NewMombasa.com

Any Idea on how to get rid of the text?

Re: HTML Text over Banner.

.pun .brdtitle * { display: none; }

Try that.

Re: HTML Text over Banner.

Which file do I edit that under?

Re: HTML Text over Banner.

remove     <pun_title> and <pun_desc> in main.tpl

Re: HTML Text over Banner.

dont remove the title...

just go in and add this to the css that you picked.

#brdtitle { display: none; }
#brdtitle p { display: none; }
My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!

Re: HTML Text over Banner.

That removes the banner.

Re: HTML Text over Banner.

Go to your tpl file and remove the lines (think it was something like "pun_forum_name" and "pun_forum_description") something like that...

The two <pun> parts above <pun_navlinks>

That will remove the text in IE

8 (edited by quaker 2007-11-15 04:06)

Re: HTML Text over Banner.

phaxenor look at the style i made for you?

u will see brdtitle display none....


P.S. i really need to redo that who style.... those big side BG img... errrr
hjahahahaha..


Q

My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!

Re: HTML Text over Banner.

I can't find this TPL file.

Re: HTML Text over Banner.

include/template folder

11

Re: HTML Text over Banner.

place this in your style.css or put it in base.css inside the style/ folder.


this is the code that i put in a style that will not display the brdtitle or the sub txt (p)
/* brdtitle location*/

 #brdtitle h1 {     position: relative; 
display:none }


 #brdtitle p {     position: relative; 
display:none }
My stuff or my style might sux, but atleast I'm willing to help when I can.
Don't be stupid and help ! We are the stupid one's !!!

12 (edited by Horizon 2007-11-17 08:46)

Re: HTML Text over Banner.

Editing the TPL worked. Thank you very much.