Override Font Weight Applied By Jquery-mobile February 28, 2024 Post a Comment I am trying to make the font weight normal instead of bold which jquery mobile makes by default. Solution 1: If you inspect the rendered page with firebug or similar, you would see that at runtime html structure is quite different from source html, courtesy of jQuery-ui that generates the pretty box:<spanclass="ui-btn-inner ui-btn-corner-all"aria-hidden="true"><spanclass="ui-btn-text">Standard: 7 day</span><spanclass="ui-icon ui-icon-arrow-d ui-icon-shadow"></span></span>CopyYou want to add a css rule to override it: #cont.ui-btn-text{font-weight:normal;} CopyThe id reference is so that it only applies to this particular place; remove it if you want to apply normal font weight everywhere. Fiddle: http://jsfiddle.net/MECXW/9/Baca JugaFancybox.. One Image That Contains More ImagesSlow Response When The Html Table Is BigHow To Save Html5 Geolocation Data To Python Django Admin? Share You may like these postsBootstrap 4 Beta 2. How To Make Equal Width Li Inside Different Col Which Are Stretched To Screen Width?Unusual Case With IE And Flip AnimationHow To Create Text Reveal Animation With Anime Js?CSS/JS/Jquery - Flex Items For Responsive Screen Sizes Post a Comment for "Override Font Weight Applied By Jquery-mobile"
Post a Comment for "Override Font Weight Applied By Jquery-mobile"