pbnet Posted October 16, 2010 Share Posted October 16, 2010 I found it rather annoying that this box was output by some encrypted code. Such a small thing, why force it on people who paid for your script? At least give it a class name or id! In my case it was overlapping an area of my design (nav), and this is how I was able to do something about it. Here's some options for you all.... Drop either of these in your footer... To completely hide the admin box: {literal} <script type="text/javascript"> $("div:contains(Logged in as Administrator):last").hide(); </script> {/literal} To just move the box (as is will set to bottom left): {literal} <script type="text/javascript"> $("div:contains(Logged in as Administrator):last").css({'top' : '95%', 'right' : '80%'}); </script> {/literal} Hope it helps! 0 Quote Link to comment Share on other sites More sharing options...
kmm2908 Posted November 18, 2010 Share Posted November 18, 2010 Thanks it helped a lot, and your comments are right, why can't we edit elements such as this in the templates? 0 Quote Link to comment Share on other sites More sharing options...
Alistair Posted November 18, 2010 Share Posted November 18, 2010 Thanks it helped a lot, and your comments are right, why can't we edit elements such as this in the templates? You can. Read the first post. 0 Quote Link to comment Share on other sites More sharing options...
MechJosh Posted November 19, 2010 Share Posted November 19, 2010 This failed to work for me, is anyone else having this problem? The solution I found (which isn't a good idea to share) was to hide the it using a div (display:none). At the same time this hides the copyright notice which is why I shouldn't share it. 0 Quote Link to comment Share on other sites More sharing options...
sparky Posted November 19, 2010 Share Posted November 19, 2010 You may have a java conflict between jquery and another script that you have loaded. Change the $ to jQuery 0 Quote Link to comment Share on other sites More sharing options...
MechJosh Posted November 19, 2010 Share Posted November 19, 2010 You may have a java conflict between jquery and another script that you have loaded.Change the $ to jQuery Thanks for the suggestion but this didn't work. 0 Quote Link to comment Share on other sites More sharing options...
sgrayban Posted December 16, 2010 Share Posted December 16, 2010 What about reformating it ? I wanted to add a line break where the | is at in the line. Is that possible ? 0 Quote Link to comment Share on other sites More sharing options...
NetLink Posted September 20, 2011 Share Posted September 20, 2011 What about reformating it ? I wanted to add a line break where the | is at in the line. Is that possible ? Here's another way to do it - in your stylesheet, add the following: div[style="position:absolute;top:0px;right:0px;padding:5px;background-color:#000066;font-family:Tahoma;font-size:11px;color:#ffffff"] { background-color: #c08121 !important; /* Change bg color */ position: fixed !important; /* Change positioning */ /* etc. */ } Here's how to add the line break: div[style="position:absolute;top:0px;right:0px;padding:5px;background-color:#000066;font-family:Tahoma;font-size:11px;color:#ffffff"] a { display: block; } 0 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.