How to remove the backdrop of a hotel

Results 1 to 6 of 6
  1. #1
    Apprentice Pifs is offline
    MemberRank
    May 2014 Join Date
    18Posts

    sad How to remove the backdrop of a hotel

    Hello RageZone,

    Is there a way to remove the backdrop of a cms?
    This thing,



    And turn it into an older version, like this:


    Is this even possible, if so how do I do it?
    The backdrops look ugly in my opinion.


    Thank you for any support,
    Pifs xo
    Last edited by Pifs; 17-07-14 at 01:57 AM.


  2. #2
    R.I.P Millercent FatalLulz is offline
    MemberRank
    Nov 2012 Join Date
    AustraliaLocation
    2,248Posts

    Re: How to remove the backdrop of a hotel

    Go to your me.php, open it so you can edit it, find the div container that contains your current user layout, then replace it with

    Code:
    <div id="container">
                    <div id="content" style="position: relative" class="clearfix">
                        <div id="column1" class="column">
                            <div class="habblet-container ">		
                                <div id="new-personal-info" style="background-image:url({url}/app/tpl/skins/Habbo/images/personal_info/hotel_views/htlview_us.png)">
                                    <div class="enter-hotel-btn">
                                        <div class="open enter-btn">
                                            <a href="{url}/api.php" target="eac955c8dbc88172421193892a3e98fc7402021a" onclick="HabboClient.openOrFocus(this); return false;">Enter {hotelName} Hotel<i></i></a>
                                            <b></b>
                                        </div>
                                    </div>
                                    <div id="habbo-plate"><img src="http://www.habbo.nl/habbo-imaging/avatarimage?figure={figure}.gif" alt="{username}"></div>
                                    <div id="habbo-info">
                                        <div id="motto-container" class="clearfix">			
                                            <strong>{username}:</strong>
                                            <div>
                                                <span title="What's on your mind today?">{motto}</span>
                                            </div>
                                        </div>
                                        <div id="motto-links" style="display: none"><a href="#" id="motto-cancel">Cancel</a></div>
                                    </div>
                                    <ul id="link-bar" class="clearfix">		
                                        <li class="credits"><font color="#fff">{coins}</font> Credits</li>
                                        <li class="activitypoints"><font color="#fff">{activitypoints}</font> Pixels</li>
                                    </ul>
                                    <div id="habbo-feed">
                                        <ul id="feed-items">
                                            <li class="small" id="feed-lastlogin">Last Signed In: {lastSignedIn}</li>
                                        </ul>
                                    </div>
                                    <p class="last"></p>
                                </div>
                                <script type="text/javascript">
                                    HabboView.add(function() {
                                        L10N.put("personal_info.motto_editor.spamming", "Don\'t spam me, bro!");
                                        PersonalInfo.init("");
                                    });
                                </script>
                            </div>
                            <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    Save and done. If it shows funny then check for missing images or .css/.js files.

  3. #3
    Check http://arcturus.pw The General is offline
    DeveloperRank
    Aug 2011 Join Date
    7,610Posts

    Re: How to remove the backdrop of a hotel

    The bottom one is the older version and the top one is the newer version

    But yeah, its just HTML you have to modify.

  4. #4
    Apprentice Pifs is offline
    MemberRank
    May 2014 Join Date
    18Posts

    Re: How to remove the backdrop of a hotel

    Quote Originally Posted by The General View Post
    The bottom one is the older version and the top one is the newer version

    But yeah, its just HTML you have to modify.
    Okay, thank you. I updated my thread.

  5. #5
    Apprentice Pifs is offline
    MemberRank
    May 2014 Join Date
    18Posts

    Re: How to remove the backdrop of a hotel

    Quote Originally Posted by FatalLulz View Post
    Go to your me.php, open it so you can edit it, find the div container that contains your current user layout, then replace it with

    Code:
    <div id="container">
                    <div id="content" style="position: relative" class="clearfix">
                        <div id="column1" class="column">
                            <div class="habblet-container ">        
                                <div id="new-personal-info" style="background-image:url({url}/app/tpl/skins/Habbo/images/personal_info/hotel_views/htlview_us.png)">
                                    <div class="enter-hotel-btn">
                                        <div class="open enter-btn">
                                            <a href="{url}/api.php" target="eac955c8dbc88172421193892a3e98fc7402021a" onclick="HabboClient.openOrFocus(this); return false;">Enter {hotelName} Hotel<i></i></a>
                                            <b></b>
                                        </div>
                                    </div>
                                    <div id="habbo-plate"><img src="http://www.habbo.nl/habbo-imaging/avatarimage?figure={figure}.gif" alt="{username}"></div>
                                    <div id="habbo-info">
                                        <div id="motto-container" class="clearfix">            
                                            <strong>{username}:</strong>
                                            <div>
                                                <span title="What's on your mind today?">{motto}</span>
                                            </div>
                                        </div>
                                        <div id="motto-links" style="display: none"><a href="#" id="motto-cancel">Cancel</a></div>
                                    </div>
                                    <ul id="link-bar" class="clearfix">        
                                        <li class="credits"><font color="#fff">{coins}</font> Credits</li>
                                        <li class="activitypoints"><font color="#fff">{activitypoints}</font> Pixels</li>
                                    </ul>
                                    <div id="habbo-feed">
                                        <ul id="feed-items">
                                            <li class="small" id="feed-lastlogin">Last Signed In: {lastSignedIn}</li>
                                        </ul>
                                    </div>
                                    <p class="last"></p>
                                </div>
                                <script type="text/javascript">
                                    HabboView.add(function() {
                                        L10N.put("personal_info.motto_editor.spamming", "Don\'t spam me, bro!");
                                        PersonalInfo.init("");
                                    });
                                </script>
                            </div>
                            <script type="text/javascript">if (!$(document.body).hasClassName('process-template')) { Rounder.init(); }</script>
    Save and done. If it shows funny then check for missing images or .css/.js files.

    So this is what happens, I checked my images and everything is correct.

  6. #6
    R.I.P Millercent FatalLulz is offline
    MemberRank
    Nov 2012 Join Date
    AustraliaLocation
    2,248Posts

    Re: How to remove the backdrop of a hotel

    Quote Originally Posted by Pifs View Post
    So this is what happens, I checked my images and everything is correct.
    You'll need to change the columns then.



Advertisement