Filipirez Filipirez  • 09.11.12 18:22

Como resolver estes bugs na MagicCMS? Empty Como resolver estes bugs na MagicCMS? 09.11.12 18:22

Olá, eu queria saber como resolver esse bug e modificar o nome "Entrar no Magic" no meu habbo! na MagicCMS! a imagem esta no link abaixo:

https://2img.net/r/ihimg/photo/my-images/805/errobug.png/

Esta é a me.php que estou usando:

http://www.4shared.com/file/Gv1Spc_5/me_online.html?

ou:

Código:
<?php
define('USERNAME_REQUIRED', TRUE);
define('ACCOUNT_REQUIRED', TRUE);
include('global.php');
define("THIS_SCRIPT", 'me');
$username = $core->EscapeString($_SESSION['username']);
$email = $core->EscapeString($_SESSION['account']);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type" />
<title>Habbirez Hotel: <?php echo $users->UserInfo($username, 'username'); ?></title>

<script src="js/libs2.js" type="text/javascript"></script>
<script src="js/visual.js" type="text/javascript"></script>
<script src="js/libs.js" type="text/javascript"></script>
<script src="js/fullcontent.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/lightweightmepage.css" type="text/css" />
<script src="js/lightweightmepage.js" type="text/javascript"></script>


<link type="text/css" rel="stylesheet" href="Public/Styles/<?php echo $currentstyle ?>/CSS/main.css" />

  <?php              if(isset($_GET["firsttime"]) && $_GET["firsttime"] == "alert")
         {
         ?>
  <script type="text/javascript">
  alert('')
  </script>
 
  <?php } ?>

</head>

 
<body>
 
 
   <?php include("system/header_home.php"); ?>
   
   <div class="mainBox">
   
   <?php include("system/homenav.php"); ?>

   <div class="mid" id="midcontent">
   
    <div style="width: 758px; margin-left: 1px; float: left;">

       <div class="myOverview">
               

         <img align="left" src="http://www.habbo.com/habbo-imaging/avatarimage?figure=hd<?php echo $users->UserInfo($username, 'look'); ?>&size=b&action=sit&direction=4&head_direction=4&gesture=sml&size=s" alt="<?php echo $users->UserInfo($username, 'username'); ?>" style="margin:10px 50px 0 30px;" />
         <div style="font-size: 10px; color: lightblue;">
           
               <div style="height: 12px; width: 200px;"></div>
           
            <div style="padding-left: 10px;"><b><?php echo $lang['me_user_info_name']; ?>:</b><br /><?php echo $users->UserInfo($username, 'username'); ?></div>
               
            <div style="padding-top: 18px;"><b><?php echo $lang['me_user_info_motto']; ?>:</b><br /><?php echo $users->UserInfo($username, 'motto'); ?></div>

            <div style="padding-top: 12px;"><b>Habbirez Hotel :</b><br /> Faça novas amizades! .</div>
         
         <div id="wide-personal-info" style="float: right;">
                  <div class="open enter-btn">
                     <a href="/client" target="ClientWndw" onclick="window.open('client/','ClientWndw','width=980,height=597');return false;"><?php echo $lang['enter_hotel']; ?><i></i></a>
                     <b></b>
                  </div>
               </div>
        </div>
      </div>
<?php
   $query_display = mysql_query("SELECT * FROM cms_news WHERE super_fader ='1'");
   $row_news = mysql_num_rows($query_display);
   ?>
<div id="promo-box" style="display:<?php if ($row_news == 0) { echo'none'; }else{ echo'block'; } ?>;margin-left:-1px;margin-bottom:10px;">

    <div style="margin-top:10px;" id="promo-bullets"></div>

<?php
   $query = mysql_query("SELECT * FROM cms_news WHERE super_fader ='1' ORDER BY published DESC LIMIT 4");
   $c = 0;
   
   while($row = mysql_fetch_assoc($query)) {
            $display = 'block';
         
         if ($c > 0)
         {
            $display = 'none';
         }
   echo '   
   
    <div class="promo-container" style="display: '.$display.'; background-image: url('.$row["super_fader_image"].');">
        <div class="promo-content">
            <div class="title"><a style="color: white;" href="articles.php?story='.$row["id"].'">'.stripslashes($row["title"]).'</a></div>
            <div class="body">'.strip_tags($row["shortstory"]).'</div>
        </div>
      <a href="" target="_blank" class="facebook-link"></a>
        <a href="http://twitter.com/#!/'.$twitter.'" target="_blank" class="twitter-link"></a>
<div class="enter-hotel-btn">
    <div class="open enter-btn">
            <a href="/client" target="ClientWndw">'.$lang['enter_hotel'].'<i></i></a>
        <b></b>
    </div>
</div>
    </div>
   ';
   $c++;
   
   }
   ?>

</div>
<script type="text/javascript">
    document.observe("dom:loaded", function() { PromoSlideShow.init(); });
</script>

        </div>

<div class="column" id="column1">

   <link type="text/css" rel="stylesheet" href="./Public/Styles/<?php echo $currentstyle ?>" />
    <link type="text/css" rel="stylesheet" href="./Public/Styles/<?php echo $currentstyle ?>/CSS/main.css" />
   <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>

   <script language="javascript">
   (function($){
      $(document).ready(function() {
         $('.avatar').click(function()  {
            var Name = $(this).attr('alt');
            var Figure = $(this).attr('figure');
            var LoginDate = $(this).attr('lastlogin');
            container = '.CurrentAvatar';
            $(container).fadeOut(500, function () {
               $('.Mainavatar').html('<img style="margin-left: 9px;" align="left" src="http://www.habbo.com/habbo-imaging/avatarimage?figure=' + Figure + '&size=s" alt="' + Name + '" />')
               $('#CharName').html(Name)
               $('.avatar-lastlogin').html('<?php echo $lang['last_login']; ?>: ' + LoginDate)
               $(container).fadeIn(500)
            });
            return;
         });

         $('.avatar-selected').click(function()  {
            var Name = $('#CharName').html();
            location.href='./functions/userlogin.php?name=' + Name;
            return;
         });

      });
      
   })(jQuery);
   </script>

   
<div style="border: px solid #;background-color:#;padding:px px px px;border-radius:px;margin-bottom:px;">
<div style="width:px;">
<font style="border: px solid #;background-color:#;padding:px;border-radius:px;color:#;text-shadow: px px #;font-size:px;font-weight:bold; font:Tahoma, Geneva, sans-serif;margin-right: px;" onmouseover="tooltip.show('');" onmouseout="tooltip.hide();">
<img style="margin-bottom:-px;margin-left: px;margin-right: -px;" src="" />
</font>
<font style="border: px solid #;background-color:#;padding:px;border-radius:px;color:#;text-shadow: px px #;font-size:px;font-weight:bold; font:Tahoma, Geneva, sans-serif;margin-right: px;" onmouseover="tooltip.show('');" onmouseout="tooltip.hide();">
<img style="margin-bottom:-px;margin-left: px;" src="" />
</font>
<font style="border: px solid #;background-color:#;padding:px;border-radius:px;color:#;text-shadow: px px #;font-size:px;font-weight:bold; font:Tahoma, Geneva, sans-serif;margin-right: 10px;" onmouseover="tooltip.show('Belcredits');" onmouseout="tooltip.hide();">
<img style="margin-bottom:-px;margin-left: px;" src="" />
</font>
</div>
</div>

<script charset="utf-8" src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
  version: 2,
  type: 'profile',
  rpp: 2,
  interval: 30000,
  width: 450,
  height: 800,
  theme: {
    shell: {
      background: '#b0daff',
      color: '#ffffff'
    },
    tweets: {
      background: '#ffffff',
      color: '#1a6475',
      links: '#000000'
    }
  },
  features: {
    scrollbar: false,
    loop: false,
    live: false,
    behavior: 'all'
  }
}).render().setUser('HabbirezHotel').start();
</script>


   
      <div style="margin-top: 10px;" class="l_boxHeader_orange"><div class="titel"><?php echo $lang['now_in']; ?> <?php echo $lang['hotel_name']; ?></div></div>
    <div class="contentBox">
   <?php
   $query = mysql_query("SELECT * FROM cms_news WHERE campaign ='1' ORDER BY published DESC LIMIT 5");
   $num = mysql_num_rows($query);
   if($num > 0)
   {
      $color = 'odd';
      while($campaign = mysql_fetch_array($query))
      {
         echo'
               <div class="campaigncontainer" id="'.$color.'">
                  <div class="image" style="background: url('.$campaign['campaignimg'].') no-repeat;"></div>
                  <div class="campaign">
                     <div class="title"><a href="articles.php?story='.$campaign['id'].'">'.strip_tags($campaign['title']).'</a></div>
                     <div class="story">'.strip_tags($campaign['shortstory'], '<br><br/><br />').'</div>
                     <div class="published">'.$lang['posted_date'].': '.@date("d-m-Y", $campaign['published']).'</div>
                     <div style="float: right;" class="readmore"><a style="color: #399001; text-decoration: underline; font-size: 11px;" href="articles.php?story='.$campaign['id'].'">'.$lang['read_more'].'</a></div>
                  </div>
               </div>';
         if($color == 'odd')
         $color='even';
         else
         $color='odd';
      }
   }         
   ?>
   
   </div>
<div class="l_boxBottom"></div>

<div style="margin-top: 10px;" class="l_boxHeader_blue"><div class="titel">Dados Adicionais</div></div>
    <div class="contentBox">
    <div class="boxContent">

    <?php include("dados.txt"); ?>

</div>
<div class="l_boxBottom"></div>
</div>

<div style="margin-top: 10px;" class="l_boxHeader_blue"><div class="titel">Oquê me espera no Habbirez ?</div></div>
    <div class="contentBox">
    <div class="boxContent">

    <?php include("reedit.txt"); ?>

</div>
<div class="l_boxBottom"></div>
</div>

<div style="margin-top: 10px;" class="l_boxHeader_blue"><div class="titel"><?php echo $users->UserInfo($username, 'username'); ?> , Que tal chamar seus Amigos ?</div></div>
    <div class="contentBox">
    <div class="boxContent">
   
  <?php include("system/radio.php"); ?>

        <?php
   $query = mysql_query("SELECT * FROM dj");
   $row = mysql_fetch_array($query);
   $avatarq = mysql_query("SELECT look FROM users WHERE username = '".$row['djname']."'");
   $avatar = mysql_fetch_array($avatarq);

         echo'
          <div class="" style="margin-top: px; background-position: -px -px;">
<div id="spot_text">
<table width="100%">

<style type="text/css">
#title_sort {
   text-shadow: rgba( 0, 0, 0, 0.2 ) 0 1px;
   float: left;
}

#djsays {
background-color: white;
border: 1px solid #9F9F9F;
border-radius: 7px;
box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
-moz-box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
-webkit-box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
color: #393939;
padding: 5px 5px 7px 5px;
margin-top: 10px;

}
</style>



</table>
</div>
</div>

</div>
</div>
<div class="l_boxBottom"></div>
';

?>


</div>

<div class="column" id="column2" style="text-align:left;">

<?php include("system/news_widget.php") ?>



  <div style="margin-top: 10px;" class="m_boxHeader_green"><div class="titel"><?php echo $lang['folow_twitter']; ?></div></div>
    <div class="m_contentBox">
             <div class="boxContent">
                <iframe src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2FHabbirezHotel&width=292&height=258&colorscheme=light&show_faces=true&border_color&stream=false&header=false

    </div>
    <div class="m_boxBottom2"></div>
    </div>


        <div style="margin-top: 10px;" class="m_boxHeader_lightblue"><div class="titel"><?php echo $lang['top_5_credits']; ?></div></div>
    <div class="m_contentBox">
             <div class="boxContent">
                <?php include("system/edit.txt"); ?>
    </div>
    <div class="m_boxBottom2"></div>


</div>


<?php
if($twitter != '')
{
}
?>
</div>

<?php
$query_display_flow_image = mysql_query("SELECT * FROM cms_news WHERE super_fader ='1'");
   $row_news_flow_image = mysql_num_rows($query_display_flow_image);
   ?>
<div style="<?php if ($row_news_flow_image == 0) { echo'margin-top: -141px;'; }else{ echo'margin-top: -451px;'; } ?> float: right; margin-right: 2px; width: 156px;">

</div>


   </div>

   <?php include("system/footer.php"); ?>


</div>
</body>
</html>


main.css:

Código:

html, body {
   padding:0;
   margin:0;
}

body {
   width:100%;
   background-color: #bce0ee;
   background-image: url( '../Images/bg.png' );
   font-size: 11px;
   font-family: Verdana;
   color: black;
}

a {
   color: #000;
   text-decoration:none;
}

div.contentBox {
   background-color: #ffffff;
   margin:0 auto;
   border-left: 1px solid #B5B5AF;
   border-right: 1px solid #B5B5AF;
}

div.m_contentBox {
   background-color: #ffffff;
   border-left: 1px solid #B5B5AF;
   border-right: 1px solid #B5B5AF;
   width: 298px;
}

div.m_contentBox_tekst {
   padding-left: 5px;
   padding-right: 5px;
}

div.mainBox {
   width: 929px;
   margin: auto;
}

div.mainBox > div.mid {
   overflow: hidden;
}

div.myOverview {
   height: 130px;
   width: 758px;
   background-image: url(../Images/me_info_bg.png);
   margin-top: 10px;
}

div.boxContent {
   padding:5px 5px 5px 5px;
}

/* header ---------------------- */

div.mainBox > div.top {
   width: 929px;
   float: right;
   margin: auto;
}

div.mainBox > div.top > a > img {
   float: left;
   border:0;
   padding:5px 0 0 5px;
}

div.titel {
        text-align: center;
        padding-top: 8px;
        font-family: font-family:Verdana,Arial,Helvetica,sans-serif;
        font-size: 15px;
        color: #FFFFFF;
}

div.boxHeader {
   padding:5px 0 5px 0;
   width:100%;
   background-color:#ccc;
   text-indent:10px;
   font-weight:bolder;
}

div.news_titel {
   color: #F60;
   font-size: 16px;
   font-family: Verdana,Arial,Helvetica,sans-serif;
   padding-top: 2px;
}

div.boxHeader_news {
   width: 520px;
   height: 30px;
   background-image: url(../Images/toppen/xl/top_news.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xxl_boxHeader_grey {
   width: 762px;
   height: 34px;
   background-image: url(../Images/toppen/xxl/top_grey.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xxl_boxHeader_orange {
   width: 762px;
   height: 34px;
   background-image: url(../Images/toppen/xxl/top_orange.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xxl_boxBottom {
   width: 762px;
   height: 6px;
   background-image: url(../Images/toppen/xxl/bottom.png);
}


div.xl_boxHeader_grey {
   width: 520px;
   height: 34px;
   background-image: url(../Images/toppen/xl/top_grey.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xl_boxBottom {
   width: 520px;
   height: 6px;
   background-image: url(../Images/toppen/xl/bottom.png);
}

div.l_boxHeader_blue {
   width: 450px;
   height: 34px;
   background-image: url(../Images/toppen/l/top_blue.png);
   text-indent:10px;
   font-weight:bolder;
}

div.l_boxHeader_red {
   width: 450px;
   height: 34px;
   background-image: url(../Images/toppen/l/top_red.png);
   text-indent:10px;
   font-weight:bolder;
}

div.l_boxHeader_lightblue {
   width: 450px;
   height: 34px;
   background-image: url(../Images/toppen/l/top_lightblue.png);
   text-indent:10px;
   font-weight:bolder;
}

div.l_boxHeader_orange {
   width: 450px;
   height: 34px;
   background-image: url(../Images/toppen/l/top_orange.png);
   text-indent:10px;
   font-weight:bolder;
}

div.l_boxBottom {
   width: 450px;
   height: 6px;
   background-image: url(../Images/toppen/l/bottom.png);
}

div.m_boxHeader_lightblue {
   width: 300px;
   height: 34px;
   background-image: url(../Images/toppen/m/top_lightblue.png);
   text-indent:10px;
   font-weight:bolder;
}

div.m_boxHeader_green {
   width: 300px;
   height: 34px;
   background-image: url(../Images/toppen/m/top_green.png);
   text-indent:10px;
   font-weight:bolder;
}

div.m_boxHeader_green_blue {
   width: 300px;
   height: 34px;
   background-image: url(../Images/toppen/m/top_green_blue.png);
   text-indent:10px;
   font-weight:bolder;
}

div.m_boxHeader_red {
   width: 300px;
   height: 34px;
   background-image: url(../Images/toppen/m/top_red.png);
   text-indent:10px;
   font-weight:bolder;
}

div.m_boxBottom2 {
   width:300px;
    height: 6px;
   background-image: url(../Images/toppen/m/bottom.png);
}

div.s_boxHeader_orange {
   width: 170px;
   height: 34px;
   background-image: url(../Images/toppen/s/top_orange.png);
   text-indent:10px;
   font-weight:bolder;
}

div.s_boxBottom {
   width: 170px;
   height: 6px;
   background-image: url(../Images/toppen/s/bottom.png);
}

div.xs_boxHeader_grey {
   width: 230px;
   height: 34px;
   background-image: url(../Images/toppen/xs/top_grey.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xs_boxHeader_orange {
   width: 230px;
   height: 34px;
   background-image: url(../Images/toppen/xs/top_orange.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xs_boxBottom {
   width: 230px;
   height: 6px;
   background-image: url(../Images/toppen/xs/bottom.png);
}

div.xxs_boxHeader_grey {
   width: 156px;
   height: 34px;
   background-image: url(../Images/toppen/xxs/top_grey.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xxs_boxHeader_orange {
   width: 156px;
   height: 34px;
   background-image: url(../Images/toppen/xxs/top_orange.png);
   text-indent:10px;
   font-weight:bolder;
}

div.xxs_boxBottom {
   width: 156px;
   height: 6px;
   background-image: url(../Images/toppen/xxs/bottom.png);
}

div.usersBox {
   background-color: #ffffff;
   margin:10px 10px;
   padding:10px 5px 10px 5px;
   border: 1px solid #000;
   text-align:center;
}

/* footer ---------------------- */

div.mainBox > div.bot > p {
   text-align: center;
}

div.mainBox > div.bot > p.copyright > a, div.mainBox > div.bot > p.copyright {
   color: #aaa;
}

/* navigation ---------------------- */

div.navBar {
   min-height:28px;
   padding: 0px 0px 0px 0px;   
   float: left;
   margin-top: 19px;
}

.navBar{margin-left: 5px;}
.navBar li{float:left;height:28px;margin:0 5px 0 0;white-space:nowrap;}
.navBar li.normal strong,.navBar li.normal a{float:left;height:22px;padding:6px 16px 0 22px;background-repeat:no-repeat;background-image:url(../Images/tabs.png);background-position:-10px -28px;color:#fff;font-weight:normal;text-decoration:none;max-width:290px;overflow:hidden;text-overflow:ellipsis}
.navBar li.selected strong,.navBar li.selected a{float:left;height:22px;padding:6px 16px 0 22px;background-repeat:no-repeat;background-image:url(../Images/tabs.png);background-position:-10px -0px;color:#000;font-weight:bold;text-decoration:none;max-width:290px;overflow:hidden;text-overflow:ellipsis}
.navBar li span{float:left;height:28px;width:6px;background-repeat:no-repeat;background-image: url(../Images/tabs.png);background-position:-4px -28px}
.navBar li.selected span{background-position:-4px 0}

.navBar li:hover strong,.navBar li:hover a{background-position:-10px -56px;}
.navBar li:hover span{background-position:-4px -56px}
.navBar li.selected:hover strong,.navBar li.selected:hover a{background-position:-10px 0}
.navBar li.selected:hover span{background-position:-4px 0}

div.navButton a {
   color: #000000;
}

div.navButton_h a {
   color: #FFFFFF;
}

div.navTitel {
   text-align:center;
   padding-top: 7px;
   font-size: 11px;
}

.divnavButton-active a {
        color: #000000;
}

div.SubnavBar {
   width:762px;
   height:28px;
   padding: 5px 0 0 5px;
   margin:0 0 0 0;
   font-family: Verdana,Arial,Helvetica,sans-serif;
   line-height: 18px;
   font-size: 12px;
}

div.SubnavBar > div.navButton:first-child {
   border-left: none;
}

div.SubnavBar > div.navButton {
   margin:0 auto 0 0px;
   text-align:center;
   padding:1px 15px 0 15px;
   float:left;
   cursor:pointer;
   border-left: #E8E8E8 solid 1px;
        color: #134787;
        text-decoration: none;
}

div.SubnavBar > div.navButton a{
color: #134787;
text-decoration: none;
}

div.SubnavBar > div.navButton:hover {
   margin:0 auto 0 0px;
   text-align:center;
   padding:1px 15px 0px 15px;
   float:left;
   text-decoration: underline;
}

/* column division ---------------------- */

div.column {
   float: left;
}

#column1 {
   overflow: hidden;
   width:450px;
   padding:10px 10px 10px 0px;
}

#column2 {
   overflow: hidden;
   width:310px;
   padding:10px 0 10px;
}

#column3 {
   overflow: hidden;
   width:170px;
   padding:10px 5px 10px 5px;
}

body#news_body #column1 {
   overflow: hidden;
   width:230px;
   padding:10px 5px 10px 5px;
}

body#news_body #column2 {
   overflow: hidden;
   width:530px;
   padding:10px 0 10px;
}

body#news_body #column3 {
   overflow: hidden;
   width:170px;
   padding:10px 5px 10px 5px;
}

/* avatar widget ---------------------- */
#avatar-plate {
   background: url(../Images/misc/info_habbo_plate.png) no-repeat 2px -162px;
   height: 138px;
   width: 96px;
   position:relative;
   top: 45px;
   left: 15px;
   cursor:pointer;
}

#avatar-plate:hover {
   background-position: 2px 75px;
}

div.avatarinfo {
   height:60px;
   width:100%;
   background-color: #7B7B71;
}

div.avatarextrainfo {
   width:100%;
   background-color: #A0A097;
   margin:0 auto;
}

div.avatarextrainfo > .content {
   padding:10px 15px 10px 15px;
   border-bottom:thin gray dotted;
}

input {
   border:0;
   font-size:10px;
   padding:1px 2px 1px 5px;
   margin:5px 0 5px 5px;
}

input:focus {
   background-color:#eee;
}

.MottoContainer {
   margin:5px 3px;
   width:323px;
   max-height:24px;
   float:right;
   background-color: transparent;
   background-repeat: no-repeat;
    background-image: url(../Images/misc/motto_field.png);
   overflow:hidden;
}

.MottoContainer > .Usersname {
   float:left;
   font-weight:bold;
   padding:5px 2px 5px 5px;
}

.MottoContainer > .Usersmotto {
   float:left;
   padding:5px 2px 5px 5px;
   color:gray;
}

/* Link bar ----------------- */

div.link-bar {
   padding: 30px 0 5px 20px;   
   background-color: #7B7B71;
}

div.link-bar div {
   float: left;
   margin: 5pt 25px 0pt 7px;
    padding: 2px 0 2px 20px;
    line-height: 16px;
    float: left;
   background-color: transparent;
   background-repeat: no-repeat;
    background-image: url(../Images/icons/info_icons.png);
}

div.link-bar > .change-looks  { background-position: 0 -976px; }
div.link-bar > .credits        { background-position: 0 -143px; }
div.link-bar > .club          { background-position: 0 -95px; }
div.link-bar > .vipclub        { background-position: 0 -1120px; }
div.link-bar > .activitypoints { background-position: 0 -1070px; padding-left: 18px }

/* feed container and items ---------------------- */

div.avatarextrainfo > .content {
    background: transparent url(../Images/icons/big_icons.png) no-repeat 10px 7px;
    min-height: 28px;
   padding:10px 15px 10px 45px;
   border-top:thin gray dotted;
}

div.avatarextrainfo > .smallcontent {
    background: transparent url(../Images/icons/small_icons.png) no-repeat 15px 7px;
   min-height: 15px;
   padding:10px 15px 10px 45px;
   border-top:thin gray dotted;
}

div.avatarextrainfo > .content:first-child {
   border-top: none;
}

div.avatarextrainfo > .content > .remove-feed-item {
   display: block;
   float: right;
   text-indent: -10000px;
   background: transparent url(../Images/icons/close_msg.png) no-repeat;
   width: 13px;
   height: 13px;
}

div.avatarextrainfo > .content:hover > .remove-feed-item {
   background-position: -118px 0;
}

div.avatarextrainfo > .content > .remove-feed-item:active,
div.avatarextrainfo > .content > .remove-feed-item:focus { outline: none; }

div.avatarextrainfo > .content#feed-birthday        { background-position: -3153px 6px; font-weight: bold; color: white; }
div.avatarextrainfo > .content#feed-notification    { background-position: -439px 6px;  }
div.avatarextrainfo > .content#feed-friends          { background-position: -892px 6px;  }
div.avatarextrainfo > .content#feed-item-giftqueue  { background-position: -2240px 6px; }
div.avatarextrainfo > .content#feed-item-dailygift  { background-position: -2240px 6px; }
div.avatarextrainfo > .content#feed-item-creditdonation { background-position: -1790px 6px; }
div.avatarextrainfo > .content#feed-item-productdonation { background-position: -2240px 6px; }
div.avatarextrainfo > .content#feed-item-hcgift      { background-position: -2690px 6px; }
div.avatarextrainfo > .content#feed-item-hc-reminder { background-position: -1339px 6px; }
div.avatarextrainfo > .content#feed-item-hc-expired  { background-position: -1339px 6px; }
div.avatarextrainfo > .content#feed-item-campaign    { background-image: none; }
div.avatarextrainfo > .smallcontent#feed-pending-members  { background-position: 15px -367px; }
div.avatarextrainfo > #feed-lastlogin        {    background: transparent url(../Images/last_login_bg.gif); width: 450px; height: 4px;}
div.avatarextrainfo > .smallcontent#feed-group-discussion { background-position: 15px -456px; }
div.avatarextrainfo > .smallcontent#feed-trading-enabled  { background-position: 15px -825px; }
div.avatarextrainfo > .smallcontent#feed-trading-disabled { background-position: 15px -886px; }

/* Enter Hotel Submitbtn ---------------------- */

#enter-hotel {
   position: relative;
   top: -20px;
   right: 10px;
   float:right;
   padding:28px 0;
}

#enter-hotel div a, div.div.avatarinfo#enter-hotel div span {
   float: left;
   background: transparent url(../Images/misc/enter_button.png) no-repeat -9px 0;
   height: 49px;
   text-align: center;
   line-height: 47px;
   padding: 0 26px 0 19px;
   font-size: 14px;
   text-decoration:none;
   color:#fff;
   position: relative;
}

#enter-hotel div span {
   padding-right: 10px;   
   background-position: -9px -98px;
}
#enter-hotel div:hover a {
   background-position: -9px -49px;
   text-decoration: none;
}
#enter-hotel div:hover b {
   background-position: 0 -49px;   
}
#enter-hotel div a i {
   background: transparent url(../Images/misc/flashy_arrow.gif) no-repeat 0 50%;
   padding: 10px 10px;
   position: absolute;
   right: 0;
   top: 13px;
   line-height: 1px;
   height: 1px;
   font-size: 1px;
}
#enter-hotel div b {
   float: left;
   background: transparent url(../Images/misc/enter_button.png) no-repeat 0 0;
   height: 49px;
   width: 9px;
}

/* campaign widget ---------------------- */



div.campaigncontainer {
   padding-left: 5px;
padding-right: 5px;
padding-top: 5px;
padding-bottom: 5px;
}

div.campaigncontainer#odd {
   background-color: #ECECEC;
}

div.campaigncontainer#odd:hover {
   background-color: #DCEAFA;
}

div.campaigncontainer#even {
   background-color: #FFFFF;
}

div.campaigncontainer#even:hover {
   background-color: #DCEAFA;
}

div.campaigncontainer > .image {
   padding:5px 5px 5px 5px;
   float:left;
   width:160px;
   height:62px;
}

div.campaigncontainer > .campaign {
   padding:0 5px 2px 5px;
   min-height:62px;
}

div.campaign > .title {
   padding:0 5px 2px 5px;
   font-weight:bolder;
}

div.campaign > .story {
   padding:0 5px 5px 5px;
}

div.campaign > .published {
   float:left;
}

div.campaign > .readmore {
   float:right;
   text-decoration: undeline;
}

#link {
   text-decoration: underline;
}

/* news widget ---------------------- */
div.newsHeader {
   height: 187px;
   width: 300px;
   margin:0 5px 0 5px;
}

div.HeadlineStory {
   height: 187px;
   width: 300px;
}

div.HeadlineStory> p.Mainheadline {
   padding:10px 5px 0 15px;
   margin:0 0 0 0;
   color:#fff;
   width: 190px;
   font-size:large;
   font-weight:bolder;
}
p.Mainheadline > a {
   color:#fff;
}

div.HeadlineStory> p.Mainstory {
   padding:5px 5px 0 15px;
   margin:0 0 0 0;
   width: 150px;
   color:#fff;
   font-size: 11px;
}

div.storybox {
   width:298px;
   background-color: #7B7B71;
   margin:0 5px 0 5px;
   padding:5px 0 5px 0;
        border-left: #B3B3AC solid 1px;
        border-right: #B3B3AC solid 1px;
}

div.storybox#odd {
   background-color: #ECECEC;
}
div.storybox#even {
   background-color: #FFFFFF;
}

div.storybox > p.headline {
   padding:0 5px 0 5px;
   margin:0 0 0 0;
}
div.storybox > p.date {
   padding:0 5px 0 5px;
   margin:0 0 0 0;
   color:#7B7B71;
}
#story {
   width:300px;
   padding:0 5px 0 5px;
}

div.m_boxBottom {
   width:302px;
        height: 32px;
   background-image: url(../Images/toppen/m/news_bottom.png);
   text-align:right;
}

div.m_boxBottom > .readmore {
   padding:0 10px 0 0;
        color: #FC6204;
        text-size: 13px;
        text-decoration: underline;
}

/* staff widget ---------------------- */

div.StaffBox {
   height:110px;
   width:100%;
}

div.StaffBox#odd {
   background-color: #ECECEC;
}

.submitbadge {
   float: right;
   background-image: url(../Images/buy.png);
   height: 25px;
   width: 90px;
}

div.StaffBox#odd:hover {
   background-color: #DCEAFA;
}

div.StaffBox#even {
   background-color: #FFFFF;
}

div.StaffBox#even:hover {
   background-color: #DCEAFA;
}

div.StaffBox > .boxContent {
   padding: 40px 30px 30px 30px;
}

div.StaffBox > div.Usersname {
   padding-top:25px;
   font-weight:bolder;
}

div.StaffBox > div.OnlineStatus {
   padding-top:25px;
   float:right;
   font-weight:bolder;
}

div.OnlineStatus > div.Online {
   background-image: url(../Images/online.gif);
   width: 50px;
   height: 16px;
}

div.OnlineStatus > div.Offline {
   background-image: url(../Images/offline.gif);
   width: 50px;
   height: 16px;
}

/* user home widget ---------------------- */

div.HomeBox {
   height:107px;
   width:410px;
}

div.HomeBox > div.UsersName {
   padding-top:25px;
   font-weight:bolder;
}

div.HomeBox > div.OnlineStatus {
   padding-top:25px;
   float:right;
   font-weight:bolder;
}

div.FriendsBox {
   text-indent:5px;
}

div.RoomBox#odd {
   background-color: #ECECEC;
   text-align: center;
   border-top: 1px solid #B5B5AF;
   padding: 5px;
}
div.RoomBox#even {
   background-color: #fff;
   text-align: center;
   border-top: 1px solid #B5B5AF;
   padding: 5px;
}

/* News Page ---------------------- */

div.contentBox > div.boxContent > a {
   text-decoration:none;
}

div.contentBox > div.boxContent > a:hover {
   font-weight:bold;
}

div.boxContent > div.story {
   padding:2px 10px 2px 10px;
}

div.boxContent > div.extrainfo {
   color:#BBB;
   height:17px;
}

div.boxContent > div.extrainfo > div.poster {
   padding:5px 15px 0 5px;
   float:left;
}

div.boxContent > div.extrainfo > div.date {
   padding:5px 15px 0 15px;
   float:right;
}

/* Fancy Triangle shit ---------------------- */

.triangle-border {
   position:relative;
   padding:15px;
   margin:1em 0 3em;
   border:5px solid #cccccc;
   color:#333;
   background:#fff;
   
   /* css3 */
   -moz-border-radius:10px;
   -webkit-border-radius:10px;
   border-radius:10px;
}

.triangle-border.left {
   margin-left:30px;
}

.triangle-border.right {
   margin-right:30px;
}

.triangle-border.staff {
   border:5px solid #3355AA;
}

.triangle-border:before {
   content:"";
   display:block; /* reduce the damage in FF3.0 */
   position:absolute;
   bottom:-40px; /* value = - border-top-width - border-bottom-width */
   left:40px; /* controls horizontal position */
   width:0;
   height:0;
   border:20px solid transparent;
   border-top-color:#cccccc;
}

/* creates the smaller  triangle */
.triangle-border:after {
   content:"";
   display:block; /* reduce the damage in FF3.0 */
   position:absolute;
   bottom:-26px; /* value = - border-top-width - border-bottom-width */
   left:47px; /* value = (:before left) + (:before border-left) - (:after border-left) */
   width:0;
   height:0;
   border:13px solid transparent;
   border-top-color:#fff;
}

/* creates the larger triangle */
.triangle-border.left:before {
   top:10px; /* controls vertical position */
   left:-30px; /* value = - border-left-width - border-right-width */
   bottom:auto;
   border-width:15px 30px 15px 0;
   border-style:solid;
   border-color:transparent #cccccc;
}

/* creates the smaller  triangle */
.triangle-border.left:after {
   top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
   left:-21px; /* value = - border-left-width - border-right-width */
   bottom:auto;
   border-width:9px 21px 9px 0;
   border-style:solid;
   border-color:transparent #fff;
}

/* creates the larger triangle */
.triangle-border.right:before {
   top:10px; /* controls vertical position */
   right:-30px; /* value = - border-left-width - border-right-width */
   bottom:auto;
    left:auto;
   border-width:15px 0 15px 30px;
   border-style:solid;
   border-color:transparent #cccccc;
}

/* creates the smaller  triangle */
.triangle-border.right:after {
   top:16px; /* value = (:before top) + (:before border-top) - (:after border-top) */
   right:-21px; /* value = - border-left-width - border-right-width */
   bottom:auto;
    left:auto;
   border-width:9px 0 9px 21px;
   border-style:solid;
   border-color:transparent #fff;
}

.triangle-border.staff:before {
   border-color:transparent #3355AA;
}

.triangle-border.staff:after {
   border-color:transparent #fff;
}

/* News Comments ---------------------- */

div.boxContent > div.UserComment.left {
   min-height:122px;
   padding-right:20px;
}
div.boxContent > div.UserComment.left > div.Avatar {
   float:left;
}
div.boxContent > div.UserComment.left > p#Comment {
   margin-left:100px;
   width:360px;
}

div.boxContent > div.UserComment.right {
   min-height:122px;
   padding-right:20px;
}
div.boxContent > div.UserComment.right > div.Avatar {
   float:right;
}
div.boxContent > div.UserComment.right > p#Comment {
   margin-left:20px;
   margin-right:80px;
   width:360px;
}

div.boxContent > div.CommentInput {
   padding-top:10px;
   height:130px;
}
div.boxContent > div.CommentInput > div.MyAvatar {
   float:left;
}
div.boxContent > div.CommentInput > div.Comment {
   float:right;
   padding-right:10px;
}

div.boxContent > div.CommentInput > div.Comment > textarea {
   width: 400px;
   height: 100px;
   border: 5px solid #cccccc;
   padding: 5px;
   margin:0 20px 20px 0;
   background-image: url(../Images/misc/comment.gif);
   background-position: bottom right;
   background-repeat: no-repeat
}

div.Submitbtn {
   padding:5px 5px 5px 5px;
}

div.Submitbtn.right {
   float:right;
}

div.Submitbtn.left {
   float:left;
}

.Submitbtn a, .Submitbtn button{
    display:block;
    float:left;
    margin:0 7px 0 0;
    background-color:#f5f5f5;
    border:1px solid #dedede;
    border-top:1px solid #eee;
    border-left:1px solid #eee;

    font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
    font-size:12px;
    line-height:130%;
    text-decoration:none;
    font-weight:bold;
    color:#565656;
    cursor:pointer;
    padding:5px 10px 6px 7px; /* Links */
}
.Submitbtn button{
    width:auto;
    overflow:visible;
    padding:4px 10px 3px 7px; /* IE6 */
}
.Submitbtn button[type]{
    padding:5px 10px 5px 7px; /* Firefox */
    line-height:17px; /* Safari */
}
*:first-child+html button[type]{
    padding:4px 10px 3px 7px; /* IE7 */
}
.Submitbtn button img, .Submitbtn a img{
    margin:0 3px -3px 0 !important;
    padding:0;
    border:none;
    width:16px;
    height:16px;
}

/* STANDARD */

button:hover, .Submitbtn a:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.Submitbtn a:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/* POSITIVE */

button.positive, .Submitbtn a.positive{
    color:#529214;
}
.Submitbtn a.positive:hover, button.positive:hover{
    background-color:#E6EFC2;
    border:1px solid #C6D880;
    color:#529214;
}
.Submitbtn a.positive:active{
    background-color:#529214;
    border:1px solid #529214;
    color:#fff;
}

/* NEGATIVE */

.Submitbtn a.negative, button.negative{
    color:#d12f19;
}
.Submitbtn a.negative:hover, button.negative:hover{
    background:#fbe3e4;
    border:1px solid #fbc2c4;
    color:#d12f19;
}
.Submitbtn a.negative:active{
    background-color:#d12f19;
    border:1px solid #d12f19;
    color:#fff;
}

/* REGULAR */

button.regular, .Submitbtn a.regular{
    color:#336699;
}
.Submitbtn a.regular:hover, button.regular:hover{
    background-color:#dff4ff;
    border:1px solid #c2e1ef;
    color:#336699;
}
.Submitbtn a.regular:active{
    background-color:#6299c5;
    border:1px solid #6299c5;
    color:#fff;
}

/* General boxes - error and success ---------------------- */

div.errormsg {
   padding: 7px;
   background-color: #fff4f2;
   border: 1px solid #a63c29;
   color: #E2001A;
   margin-top: 5px;
}

div.errormsg > h3 {
   font-weight: bold;
   margin: 0px;
   padding: 0px;
   font-size: 13px;
}

div.goodmsg {
   padding: 7px;
   background-color: #d8f3d8;
   border: 1px solid #4da04d;
   color: #205220;
   margin-top: 5px;
}

div.goodmsg > h3 {
   font-weight: bold;
   margin: 0px;
   padding: 0px;
   font-size: 13px;
}

form {
   padding-bottom:30px;
}

form > input {
   border:1px gray solid;
   font-size:10px;
   padding:1px 2px 1px 5px;
   margin:5px 0 5px 5px;
   width:200px;
}

a.selected {
   font-weight:bold;
}

.display_none {
   display:none;
}

/* Voting Page --------------- */
body.votepage {
   background-image: url( '../Images/bg.gif' );
}

.votepage .contentBox {
   width:330px;
   padding:5px 5px 5px 5px;
   text-align:center;
}

div .RoomSearchResultsIcon {
   width: 100px;
   float: left;
   height: 100px;
   background-position: center center;
   background-repeat: no-repeat;
   margin-right: 5px;
}

div.RoomsBox {
   height:110px;
   width:410px;
}

div.RoomsBox > div.Roomsname {
   padding-top:25px;
   font-weight:bolder;
}

div.RoomsBox > div.Roomsinfo {
   
}

/* other */

element.style {
background-position: -240px -315px;
}

div.window.spotlight.orange {
background-color: #FF9000;
}

div.window.spotlight.blue {
background-color: #16CBFF;
}

.subcontainer > .content > div:not(.forum) > * {
margin-left: auto;
margin-right: auto;
margin-bottom: 6px;
}

div.window.spotlight {
background-image: url(../Public/Styles/Default/Images/window-spotlight.png);
background-position: center;
}

div.window {
background-color: white;
border: 1px solid #9F9F9F;
border-radius: 7px;
box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
-moz-box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
-webkit-box-shadow: 0 -2px rgba( 0, 0, 0, 0.13 ) inset;
color: #494949;
font-family: Verdana;
font-size: 11px;
text-align: left;
width: auto;
margin-bottom: 6px;
}

div {
display: block;
}

#spot_text {
   padding: 5px 5px 5px 5px;
   color: white;
}

#profiel_button {
   background-image:url(../Images/profiel_bg_button.gif);
   height: 83px;
   width: 110px;
   text-align: center;
   padding-top: 20px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
   float: left;
   margin-left: 10px;
}

#profiel_button:hover {
   background-image:url(../Images/profiel_bg_button_active.gif);
   height: 83px;
   width: 110px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
}

#profiel_button:active {
   background-image:url(../Images/profiel_bg_button_hover.gif);
   height: 83px;
   width: 110px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
}

#profiel_button_e {
   background-image:url(../Images/profiel_bg_button.gif);
   height: 83px;
   width: 110px;
   text-align: center;
   padding-top: 20px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
   float: left;
}

#profiel_button_e:hover {
   background-image:url(../Images/profiel_bg_button_active.gif);
   height: 83px;
   width: 110px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
}

#profiel_button_e:active {
   background-image:url(../Images/profiel_bg_button_hover.gif);
   height: 83px;
   width: 110px;
   font-size: 14px;
   font-family: Verdana, Geneva, sans-serif;
   text-shadow: 0px 1px #A9A9A9;
}

input[type=text],input[type=email],input[type=password]{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:15px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}
input[type=text]:focus,input[type=email]:focus,input[type=password]:focus,textarea:focus,.textarea:focus,select:focus,.select:focus{border-color:#aaa}

textarea,.textarea{outline:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;padding:10px;font-family:verdana;font-size:11px;font-weight:normal;color:#545454;border-style:solid;border-color:#e2e2e2;border-bottom-width:2px;height:auto;}
.incontainer,.inputcontainer{padding-right:15px}
input[type=submit]{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}
input[type=submit]:hover{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#D3D3D3;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#F2F2F2;resize:none}
input[type=submit]:active{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#C6C6C6;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:#E5E5E5;resize:none}
input[type=submit]:disabled{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:30px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none;opacity: 0.7;}
select{height:30px;font-size:11px;font-weight:normal;color:#545454;font-family:Verdana;border-style:solid;border-color:#e2e2e2;margin:3px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-color:white}
select:focus{border-color:#aaa}.select:focus{border-color:#aaa}
input[type=file] { font-size:12px;font-family:Verdana;width:100%;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:auto;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}
.option{font-size:12px;font-family:Verdana;padding:6px;border-width:1px;border-style:solid;border-color:#e2e2e2;height:15px;margin-bottom:6px;-webkit-border-radius:3px;-moz-border-radius:3px;border-bottom-width:2px;border-radius:3px;color:#383838;outline:none;background-color:white;resize:none}

.instellingen_normal {
   background-color: #D6D6D6;
   color: #FFFFFF;
   font-weight: bold;
   padding: 5px;
   width: 95.8%;
   text-decoration: none;
   border-bottom: 1px solid #A7A7A7;
}

.instellingen_selected {
   background-color: #FFFFFF;
   color: #E3E3E3;
   font-weight: bold;
   padding: 5px;
   width: 95.8%;
   border-bottom: 1px solid #A7A7A7;
}

.instellingen_selected:hover {
   background-color: #D6D6D6;
   color: #FFFFFF;
   font-weight: bold;
   padding: 5px;
   width: 95.8%;
   text-decoration: none;
   border-bottom: 1px solid #A7A7A7;
}

.instellingen_normal:hover {
   background-color: #FFFFFF;
   color: #E3E3E3;
   font-weight: bold;
   padding: 5px;
   width: 95.8%;
   border-bottom: 1px solid #A7A7A7;
}

#topbar {
padding-top: 3px;
padding-bottom: 4px;
height: 45px;
width: 100%;
background: #333;
color: white;
font-family: Verdana,Geneva,sans-serif;
font-size: 11px;
}

#topbar #text {
padding-top: 16px;
margin: 0;
float: left;
}

#topbar p {
display: block;
-webkit-margin-before: 1em;
-webkit-margin-after: 1em;
-webkit-margin-start: 0px;
-webkit-margin-end: 0px;
}

#topbar #right {
float: right;
margin: 0;
margin-top: 0px;
height: 17px;
}

#topbar #right a {
color: white;
text-decoration: none;
}

#header_menu {
   width: 572px;
   background-image: url(../Images/header_menu.png)
   height: 38px;
}

#big_box {
   width: 927px;
   border: 1px solid #B7B7B7;
   border-radius: 4px;
   margin-top: 10px;
   background-color: white;
}

Eiii! Descobri como mudar o "Entrar no Magic" é so você ir em (lang/br.php) e la você procura: "Entrar" ou "Entrar no Magic" e troca por oque você quiser e pronto!!

Obrigado!


Última edição por Filipirez em 10.11.12 14:06, editado 4 vez(es)

ŦiʀɛWѳw ŦiʀɛWѳw  • 09.11.12 18:24

Como resolver estes bugs na MagicCMS? Empty Re: Como resolver estes bugs na MagicCMS? 09.11.12 18:24

Poste Codigo da Me.php irei Ajudalo..

Att
FireWow

-luiz,, -luiz,,  • 09.11.12 18:42

Como resolver estes bugs na MagicCMS? Empty Re: Como resolver estes bugs na MagicCMS? 09.11.12 18:42

Retre a lnha <img style="float: left; margin-top: 15px; margin-left: 10px;" src="Public/Styles/Default/Images/logo2.gif">

Ela esta em alguma pagna que esta ncluda na me, pode ser algo como topo.
Se não achar avse.
--
Coloque dentro do abaxo da tag <head> o segunte codgo:
Código:
<script>$(document).ready(function(e){$('img[src="logo2.gif"]').remove()});</script>

ŦiʀɛWѳw ŦiʀɛWѳw  • 09.11.12 20:37

Como resolver estes bugs na MagicCMS? Empty Re: Como resolver estes bugs na MagicCMS? 09.11.12 20:37

Basta Por Essa Imagem No Logar do Logo2,E Imagem Transparente e Mais Facil Fazer Isso do Que Correr o Risco de Bugar a cms Toda.

Lugar aonde ta a Imagem >>Public/Styles/Default/Images/logo2.gif"


Imagem: Link>>>
Imagem Tranparente:
Att
FireWow

Gabrieldlm Gabrieldlm  • 10.11.12 14:10

Como resolver estes bugs na MagicCMS? Empty Re: Como resolver estes bugs na MagicCMS? 10.11.12 14:10

A pedido do autor do tópico

@Fechado
Permissões neste sub-fórum
Não podes responder a tópicos

BH Servers

Recomendamos a BH Servers com proteção DDOS gratuita em Cloud Server de alta performance. Entrega imediata.