Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only to registered users.

nu canfig /setup

Questions related to installing, updating, setting up and configuring
Post Reply
nathan
Posts: 40
Joined: Tue Apr 19, 2022 9:18 pm
Been thanked: 3 times

nu canfig /setup

Unread post 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
steven
Posts: 369
Joined: Mon Jun 15, 2009 10:03 am
Has thanked: 52 times
Been thanked: 52 times

Re: nu canfig /setup

Unread post by steven »

Hi nathan,

How do you currently run 2 nuBuilder applications off the same database?


Steven
A short post is a good post.
nathan
Posts: 40
Joined: Tue Apr 19, 2022 9:18 pm
Been thanked: 3 times

Re: nu canfig /setup

Unread post by nathan »

I have installed in 2 different folders and in the nuconfig files i point the to the same database.
kev1n
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

Unread post by kev1n »

Can you explain a bit what exactly is meant by 'breadcrumb titles' or what you specifically want to do with them?
nathan
Posts: 40
Joined: Tue Apr 19, 2022 9:18 pm
Been thanked: 3 times

Re: nu canfig /setup

Unread post 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
steven
Posts: 369
Joined: Mon Jun 15, 2009 10:03 am
Has thanked: 52 times
Been thanked: 52 times

Re: nu canfig /setup

Unread post 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
A short post is a good post.
nathan
Posts: 40
Joined: Tue Apr 19, 2022 9:18 pm
Been thanked: 3 times

Re: nu canfig /setup

Unread post by nathan »

Thank you I will try this ASAP
Post Reply