[Pro] HTML Markup & CSS styling of multiple buttons

Never mind, I solved it myself. Instead of using the Name/ID in my HTML Markup CSS, I used the Class instead (added to via Item > Extended). That styles all the buttons quite nicely.

<style type="text/css">
<!--

/* Styling the Serial Search button */
.RoundBtn {
    min-width: 65px;
    background-color: #b9cbdb;
    background-image: none;
    cursor: pointer;
    text-decoration:none;
    font-family: 'Hiragino Kaku Gothic Pro','平成角ゴシック',HeiseiKakuGothic,Osaka,'メイリオ','Meiryo','MS Pゴシック','MS PGothic',Sans-serif;
    font-size: 12px;
    color: black;
    padding: 3px 5px 1px 5px; /* top right bottom left */
    border: 1px solid #fff;
    outline: 0;
}
.RoundBtn:hover {
    color: white;
    background-color: blue;
    border: 1px solid #fff;
    outline: 0;
}
.RoundBtn:active {
    color: white;
    background-color: red;
    border: 1px solid #fff;
    outline: 0;
}

/* Rounding the button */
.RoundBtn { 
-webkit-border-radius: 5px; 
-moz-border-radius: 5px;  
border-radius: 5px; 
-webkit-background-clip:padding-box; 
background-clip:padding-box; 
}

-->
</style>

freewaytalk mailing list
email@hidden
Update your subscriptions at: