This topic is locked

Common Pages

3/1/2024 12:19:20 PM
ASPRunner.NET General questions
E
Edward K. author

I have two questions:

  1. Is there a way to modify the Common Pages (Landing Page), currently the UI displayes coloured boxes for each table I've created. I would like to be able to change this to someother type of graphics rather that the rectangular boxes.

img alt

  1. Can you have more than one common page and if so how would you add a new common page to the menu?

img alt

Thanks,

Edward K

D
DRCR Dev 3/1/2024

img alt

Use CSS in the style section to add borders

div.bs-welcome-item[data-itemtype="welcome_item"] {
border-radius: 15px !important; /* Rounded corners, with override */
background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1)) !important; /* Gradient background fading to white, with override */
/* Add other styling as needed, using !important if necessary */
}

Yes you can have an many menu pages as you want and use rules to redirect to the version applicable to the situation.