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
Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Register and log in to access exclusive forums and content available only to registered users.
nu canfig /setup
Re: nu canfig /setup
Hi nathan,
How do you currently run 2 nuBuilder applications off the same database?
Steven
How do you currently run 2 nuBuilder applications off the same database?
Steven
A short post is a good post.
Re: nu canfig /setup
I have installed in 2 different folders and in the nuconfig files i point the to the same database.
-
- nuBuilder Team
- Posts: 4291
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 444 times
- Contact:
Re: nu canfig /setup
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
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
.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
Hi nathan,
Make this change to nuconfig.php in the folder you want to look different...
And create a file called mystyles.css.
Put this in it...
And save this file in the same directory as nuconfig.php.
Steven
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
A short post is a good post.