truemo9 Posted August 23, 2010 Report Share Posted August 23, 2010 Hello, Im trying to get rid of them blue and black boxes at every page at the top check em out at www.bmavirtual.co.cc Thanks Quote Link to comment Share on other sites More sharing options...
MAT Posted August 23, 2010 Report Share Posted August 23, 2010 in the frontpage_main.tpl is there a code for it? if so remove it Quote Link to comment Share on other sites More sharing options...
truemo9 Posted August 23, 2010 Author Report Share Posted August 23, 2010 What code is this? Quote Link to comment Share on other sites More sharing options...
RogerB Posted August 23, 2010 Report Share Posted August 23, 2010 All you have to do is search for the text that is displayed, its really not that hard...Its the first thing on the page.. // Highlighter Scroller II script- By JavaScript Kit (http://www.javascriptkit.com) // For this and over 400+ free scripts, visit http://www.javascriptkit.com/ // This notice must stay intact //CONFIGURE MESSAGES AND VARIABLES var tickercontents=new Array() tickercontents[0]='Feel free to visit FsPaintShop for more skins <a href="http://www.fspaintshop.com" target="blank">Visit!</a>' tickercontents[1]='Hop on over to Va Central some time.' tickercontents[2]='Be sure to visit PHPVMS for support with this system' tickercontents[3]='You can change this in the frontpage_main.tpl file' var tickerwidth="300px" var tickerheight="25px" var fontcss="font: bold 10px Verdana; color:black" var tickdelay=4000 //delay btw messages var highlightspeed=2 //2 pixels at a time. var highlightcolor="white" var backdroptextcolor="#E1E1E1" ////Do not edit pass this line//////////////// document.write('<style>#highlighterbg a{color:'+backdroptextcolor+'}</style>') document.write('<div style="position:relative;left:0px;top:0px; width:'+tickerwidth+'; height:'+tickerheight+';'+fontcss+'">') document.write('<span id="highlighterbg" style="position:absolute;left:0;top:0;color:'+backdroptextcolor+'; width:'+tickerwidth+'; height:'+tickerheight+';padding: 4px"></span><span id="highlighter" style="position:absolute;left:0;top:0;clip:rect(auto auto auto 0px); background-color:'+highlightcolor+'; width:'+tickerwidth+';height:'+tickerheight+';padding: 4px"></span>') document.write('</div>') var currentmessage=0 var clipbottom=1 function changetickercontent(){ msgheight=clipbottom=crosstick.offsetHeight crosstick.style.clip="rect("+msgheight+"px auto auto 0px)" crosstickbg.innerHTML=tickercontents[currentmessage] crosstick.innerHTML=tickercontents[currentmessage] highlightmsg() } function highlightmsg(){ //var msgheight=crosstick.offsetHeight if (clipbottom>0){ clipbottom-=highlightspeed crosstick.style.clip="rect("+clipbottom+"px auto auto 0px)" beginclip=setTimeout("highlightmsg()",20) } else{ clipbottom=msgheight clearTimeout(beginclip) if (currentmessage==tickercontents.length-1) currentmessage=0 else currentmessage++ setTimeout("changetickercontent()",tickdelay) } } function start_ticking(){ crosstickbg=document.getElementById? document.getElementById("highlighterbg") : document.all.highlighterbg crosstick=document.getElementById? document.getElementById("highlighter") : document.all.highlighter crosstickParent=crosstick.parentNode? crosstick.parentNode : crosstick.parentElement if (parseInt(crosstick.offsetHeight)>0) crosstickParent.style.height=crosstick.offsetHeight+'px' else setTimeout("crosstickParent.style.height=crosstick.offsetHeight+'px'",100) //delay for Mozilla's sake changetickercontent() } if (document.all || document.getElementById) window.onload=start_ticking </script> Quote Link to comment Share on other sites More sharing options...
truemo9 Posted August 23, 2010 Author Report Share Posted August 23, 2010 I dont know where this is, ive tryed frontpage.tpl in core/templates but its not there, also its not in lib/skins/obsess blue frontpage file either. Quote Link to comment Share on other sites More sharing options...
giorgi Posted August 23, 2010 Report Share Posted August 23, 2010 roger is right just check all templates files in core and obessesblue folder Quote Link to comment Share on other sites More sharing options...
MAT Posted September 19, 2010 Report Share Posted September 19, 2010 it does not work Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted September 20, 2010 Moderators Report Share Posted September 20, 2010 All template files in the skin folder has the entry above, just remove the code. Quote Link to comment Share on other sites More sharing options...
RogerB Posted September 20, 2010 Report Share Posted September 20, 2010 I posted a how to about this a long time ago... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.