I am using Joomla 3.2.1 and I did a MVC component and a menu to it so now in /components/com_MY_COMPONENT_NAME/views/ONE_VIEW_NAME/tmpl/default.php I can write any HTML/PHP I want.
I have been doing tests of some bootstrap examples and I realize that the CSS is not exactly the same.
Eg. Button btn btn-primary
must has (inspecting with fire-bug in bootstrap's website):
background-color: #006DCC;
background-image: linear-gradient(#08C, #04C);
But... trying the same (coping the whole table) on my Joomla I see that the css is:
background-color: #206991;
background-image: none;
Here the result:
You can appreciate that the font-size
is different, but also are line-height
, border-radius
and margin-bottom
This may sound quite trivial, but the point is why are different. If I continue using bootstrap classes I may find some unexpected behaviours/problems.
There is no joomla template that ensures me that using bootstrap like the original?