Hi, as you can see here – http://screencast.com/t/lPXtH13s – the titles of the progress bars are a little OFF. they don’t fit inside the bar as in the theme demo.
How can I fix this?
Hi DROR!
go with this code:
.avia-progress-bar .progressbar-title-wrap {
bottom: 0px;
left: 0px;
}
Cheers!
Andy
I am not sure whether this is on purpose but this ‘title-shift’ is has been there for ages. Because the demo displays it different or like most people would say ‘correct’ you should consider to fix it or add an option to the element (layout architect) to control the shift.
In addition to Andy’s post i would like to mention the CSS rule provided does only half the job. To make it ‘perfect’ use:
.avia-progress-bar .progressbar-title-wrap {
font-size: 0.8em;
bottom: 0;
left: 0;
padding: 1px 10px;
}