I am trying to change the weight of button text to bold (in certain cases). To do this I created a new class in bootstrap.css, basically a copy of the btn class with font-weight: bold - I named the class btnbold:
.btnbold {
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: bold;
line-height: 1.428571429;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
I then wrote the following code to observe the buttons with various changes, including making the text bold:
<button type="button" class="btn">Basic</button>
<button type="button" class="btnbold btn-default">Bold Default</button>
I tested this code in my development area, and the "Bold Default" button looked as I expected - the text was bold. When I exported by changes to our web site, the "Bold Default" button text was non-bold but the button border had a raised appearance. I am using IE in both cases.
Help ????
Thanks Rich