This topic is locked

v10.6 How to chage font of values on list page

11/1/2021 7:35:52 PM
ASPRunner.NET General questions
J
jetsguy author

I want to be able to change the font weight of the value fields and not the labels. I'm using a 3 column grid layout if that helps? Ideally I'd like to do this in CSS to apply to all pages. Any help is appreciated.

Sergey Kornilov admin 11/1/2021

Things like this are usually done with the help of CSS. See CSS examples here:
https://xlinesoft.com/phprunner/docs/customizing_styles_examples.htm

Also there are two videos that explain in depth the CSS topic:
https://www.youtube.com/watch?v=_DmMYRCUtU8
https://www.youtube.com/watch?v=yFnD38oslIc

J
jetsguy author 11/2/2021

Thanks I think it's a matter of learning what class to call. In versin 9.8 I was able to call the following.
LABELS: .rnr-ff-cwrap {font-weight:normal !important;}
DATA VALUES: .rnr-ff-vcwrap {font-weight:bold !important;}

Do you know of the corresponding classes for v10.6?

Sergey Kornilov admin 11/2/2021

It looks like you didn't have a chance to check any of the links supplied. The first link shows examples of CSS modification, including the font of the data on the list page.

And those Youtube videos explain how to find a correct CSS classes names instead of guessing it.