Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[RevCMS] Showing tabs.png [HTML/CSS]

YOLO <3
Joined
Jul 6, 2013
Messages
542
Reaction score
31
These are my tabs which I currently use:
65c275262639878dfaacc377f833d916 - [RevCMS] Showing tabs.png [HTML/CSS] - RaGEZONE Forums


It shows up like this on my website:
19de065660cc46bd8e7c39eba0f889b0 - [RevCMS] Showing tabs.png [HTML/CSS] - RaGEZONE Forums


But I don't want it blue: how can I get it green?
This is the code I use at the moment:
Code:
   <div id="to-hotel">                        
</div>
</div>
<ul id="navi">
 <li class="metab">
<a href="{url}/community">Community</a><span></span></li>
</ul>
<div id="habbos-online"><div class="rounded"><span>{online} users online</span></div></div>
 </div>
        </div>
 

Attachments

You must be registered for see attachments list
Last edited:
Joined
Feb 7, 2010
Messages
1,862
Reaction score
1,006
I'm not sure how RevCMS works, but have you tried changing every "navi2" with "navi4"?
My guess is thet navi1 is the white one, navi2 the dark blue one, navi3 the light blue one, navi4 the dark green one and navi5 the light green one.

Try it and let me know :)
 
Upvote 0
YOLO <3
Joined
Jul 6, 2013
Messages
542
Reaction score
31
I'm not sure how RevCMS works, but have you tried changing every "navi2" with "navi4"?
My guess is thet navi1 is the white one, navi2 the dark blue one, navi3 the light blue one, navi4 the dark green one and navi5 the light green one.

Try it and let me know :)
didnt help
 
Upvote 0
Junior Spellweaver
Joined
Dec 31, 2013
Messages
198
Reaction score
25
Try this: <div id="to-hotel"> </div>
</div>
<ul id="navi">
<li class="registertab">
<a href="{url}/community">Community</a><span></span></li>
</ul>
<div id="habbos-online"><div class="rounded"><span>{online} users online</span></div></div>
</div>
</div>
 
Upvote 0
YOLO <3
Joined
Jul 6, 2013
Messages
542
Reaction score
31
Try this: <div id="to-hotel"> </div>
</div>
<ul id="navi">
<li class="registertab">
<a href="{url}/community">Community</a><span></span></li>
</ul>
<div id="habbos-online"><div class="rounded"><span>{online} users online</span></div></div>
</div>
</div>
Didn't change anything
 
Upvote 0
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
You have to look inside CSS'
Use notepad++ (or other editors) to search "metab" with the "search in files" option
 
Upvote 0
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
You don't have to change it, only to see if there is some css tag inside metab that can do this image "selection" (green instead of blue)
 
Upvote 0
Loyalty
Loyal Member
Joined
May 4, 2012
Messages
1,763
Reaction score
884
Hello,

Normally I just change the order using paint , it works anyway :p


Regards ,

Your daily pickle
 
Upvote 0
YOLO <3
Joined
Jul 6, 2013
Messages
542
Reaction score
31
I'm on cellphone but I can help you to get the CSS.
Go to LOGGED OUY ONLY - If you are not logged out, then log out, and get the HTML from Register Now button on menu.
Code:
[TABLE]
[TR]
[TD="class: line-content"]<ul id="navi">[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		<li id="tab-register-now"><a href="[URL="http://ex.habbo.com/quickregister/start"]/quickregister/start[/URL]">Register now!</a><span></span></li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		<li class="selected">[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<strong>Community</strong><span></span>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		</li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		<li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<a href="[URL="http://ex.habbo.com/safety"]/safety[/URL]">Safety</a>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<span></span>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		</li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		<li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<a href="[URL="http://ex.habbo.com/credits"]/credits[/URL]">Credits</a>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<span></span>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		</li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		<li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<a href="[URL="http://ex.habbo.com/articles"]/articles[/URL]">News</a>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]			<span></span>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]		</li>[/TD]
[/TR]
[TR]
[TD="class: line-number"][/TD]
[TD="class: line-content"]</ul>
[/TD]
[/TR]
[/TABLE]
 
Upvote 0
Newbie Spellweaver
Joined
Apr 2, 2012
Messages
72
Reaction score
10
DutchenL, have you found "metab" in some css?
If yes, post here in CODE tag
 
Upvote 0
Back
Top