This topic is locked
[SOLVED]

 phprunner 10.3 - view field borders like edit field borders

4/9/2020 6:02:24 PM
PHPRunner General questions
M
MikeB941 author

Hello:
I'm using the cerulean Theme under phprunner 10.3
Under VIEW, Is there a way (Custom CSS?) to get the box / border/ outline around each field as it appears under EDIT?
Appreciate any help!
Take Care... Mike.

Sergey Kornilov admin 4/9/2020

Yes, it should be possible with the help of Custom CSS. Most likely you will need to use the border property.
There are two videos that explain the CSS topic in-depth:

https://www.youtube.com/watch?v=_DmMYRCUtU8

https://www.youtube.com/watch?v=yFnD38oslIc

M
MikeB941 author 4/13/2020



Yes, it should be possible with the help of Custom CSS. Most likely you will need to use the border property.
There are two videos that explain the CSS topic in-depth:

https://www.youtube.com/watch?v=_DmMYRCUtU8

https://www.youtube.com/watch?v=yFnD38oslIc


Thanks very much! Using the tutorials above I was able to add the following to the Custom CSS under the editor to get the same field boxes on the view pages as there are on the edit pages (theme cerulean and phprunner 10.3):

div.col-md-offset-3.col-md-6 {

border: 1px solid #ccc;

border-radius: 4px;

}

div.col-md-8 {

border: 1px solid #ccc;

border-radius: 4px;

}


The div names varied a little across a couple of tables (I was able to find the correct div names and the needed modifications to the name (spaces into periods) using the chrome element inspect and the info in the tutorials).