[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: css Issues

  • Thread starter Thread starter vpetrov
  • Start date Start date
Status
Not open for further replies.
V

vpetrov

Guest
Hi Greg, The best way to achieve the desired styling is to add CSS class for that particular row and then use it to target the labels inside, e.g. .my-labels-row label { font-weight: bold; } This CSS rule can be defined either on View level (by Edit CSS button for each view) or in the "\app\src\styles\app\app.custom.css" file if you want to reuse the same style across views: When you hit Save, the dev server (if it's turned on) refreshes the page automatically and you'll have the changes. Note: In order to center the labels you'll need to either set them to width 100%, or set this property to the columns that hold the label. This is because, according to CSS specs, text-align works on the contents of the element, not the element itself. Regards, Venelin

Continue reading...
 
Status
Not open for further replies.
Back
Top