Reputation: 9055
Building a custom Joomla! component, in my Admin interface a css class with value m (<div class="m"> </div>
)is getting called every time. How could ignore to not get included. I'm searching in the source but till now without any result.
Upvotes: 0
Views: 71
Reputation: 91
If you don't found where, I can propose interesting method.
You may delete the class m
with jQuery method.
On page load get element with class m
and delete this class from that element.
<script>
(function(){
$('.m').removeClass('m');
})
</script>
Upvotes: 1
Reputation: 2731
It's done by the bluestork template and is responsible to built the light grey box with rounded corners around the submenu, your extension output and such things. If you don't like it, change it in the template or use a different template :-)
But then, what is your issue with it? Does it break something?
Upvotes: 1