0

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.

1
  • Check inside the views folder for the class that is added. Unless the class is being added via javascript. Either way, I didn't understand what you mean by "is getting every time called"... Commented Apr 11, 2013 at 15:54

2 Answers 2

1

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?

Sign up to request clarification or add additional context in comments.

Comments

1

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>

1 Comment

the idea is not bad, but is not the cleanest

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.