After trying numerous methods, I have come to the conclusion that the current approach works for others but not for me. Can anyone suggest an alternative way to write this code?
Current CSS
.aw-widget-current-inner div.aw-widget-content a.aw-current-weather p span.aw-temperature-today b {
margin: 0px !important;
}
Desired Outcome
.aw-widget-current-inner div.aw-widget-content a.aw-current-weather p span.aw-temperature-today b {
margin: 20px;
}
JavaScript Code
<script>
$(init);
function init() {
$('.aw-widget-current-inner b').css({
'margin':'20px 0px -10px 0px'
});
}
</script>