Page 1 of 1
nu canfig /setup
Posted: Mon Dec 30, 2024 5:31 pm
by nathan
Hi
I am runing 2 different nubuilder apps that adress the same DB
I would like to give differnt syles and breadcrumb titles to each one ..
how could i go about this ???
Thank you
Re: nu canfig /setup
Posted: Mon Dec 30, 2024 8:49 pm
by steven
Hi nathan,
How do you currently run 2 nuBuilder applications off the same database?
Steven
Re: nu canfig /setup
Posted: Tue Dec 31, 2024 5:37 pm
by nathan
I have installed in 2 different folders and in the nuconfig files i point the to the same database.
Re: nu canfig /setup
Posted: Tue Dec 31, 2024 5:59 pm
by kev1n
Can you explain a bit what exactly is meant by 'breadcrumb titles' or what you specifically want to do with them?
Re: nu canfig /setup
Posted: Sat Jan 04, 2025 5:22 pm
by nathan
Example I would like to have different colors to identify what application I am using. (easy visual conformation of app)
.nuBreadcrumbHolder {
background-color: #B22222
border-bottom: thin solid #5e5b64;
}
One app is for prototyping (testing small portions of code) one is for testing before updating final app
Re: nu canfig /setup
Posted: Sun Jan 05, 2025 9:01 pm
by steven
Hi nathan,
Make this change to nuconfig.php in the folder you want to look different...
Code: Select all
$nuConfigIncludeCSS = 'mystyles.css'; //-- Include one or more CSS File(s). E.g. 'mystyles.css' or ['mystyles1.css','mystyles2.css']
And create a file called mystyles.css.
Put this in it...
Code: Select all
.nuBreadcrumbHolder {
background-color: #B22222;
border-bottom: thin solid #5e5b64;
}
And save this file in the same directory as nuconfig.php.
Steven
Re: nu canfig /setup
Posted: Mon Jan 20, 2025 6:22 pm
by nathan
Thank you I will try this ASAP