NAV_TABLE_COLUMN does not allow background color change
NAV_TABLE_COLUMN does not allow background color change
Hi all
How can I change background color of the left section when I use NAV_TABLE_COLUMN in the left section?
Did some searching on the forums, found some replies but no final solutions.
I have changed the following, without success:
-page layout left section color: #3399ff
-conf.template_default.inc.php: changed all entries with 'bgcolor' in the name (eg row_space_bgcolor, row_norm_bgcolor etc) between line 19 and 64 to: #3399ff
-in the template I use a DIV tag to set the style; the background-color of the referred style is: #3399ff
However, despite all this, the background color remains white...
Check http://www.vollebregtonline.com/ to see..
Help!
-Hans
How can I change background color of the left section when I use NAV_TABLE_COLUMN in the left section?
Did some searching on the forums, found some replies but no final solutions.
I have changed the following, without success:
-page layout left section color: #3399ff
-conf.template_default.inc.php: changed all entries with 'bgcolor' in the name (eg row_space_bgcolor, row_norm_bgcolor etc) between line 19 and 64 to: #3399ff
-in the template I use a DIV tag to set the style; the background-color of the referred style is: #3399ff
However, despite all this, the background color remains white...
Check http://www.vollebregtonline.com/ to see..
Help!
-Hans
Hi
tha nav_table also use the Class >td< so take a look in your frontend.css at
you see ? background-color: white 
tha nav_table also use the Class >td< so take a look in your frontend.css at
Code: Select all
td, tr, th, p {
background-color: white;
vertical-align: top;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12px
}
Hi,
I have the same issue whereas I cant change the background grey (#D9DEE3) of NAV_TABLE_COLUMN. I am unable to understand from the exchage, what exactly should I be doing to change it?
I cant even find the option anywhere in layout/template/frontend.CSS as well.
Can you also tell me the TAG used on the website for the left side navigational http://www.vollebregtonline.com as I will like to have a similar link structure ?
How do I change the RED colour of Links as the change in Layour options does not seem to be working.
Help.....
Regards,
Renato
I have the same issue whereas I cant change the background grey (#D9DEE3) of NAV_TABLE_COLUMN. I am unable to understand from the exchage, what exactly should I be doing to change it?
I cant even find the option anywhere in layout/template/frontend.CSS as well.
Can you also tell me the TAG used on the website for the left side navigational http://www.vollebregtonline.com as I will like to have a similar link structure ?
How do I change the RED colour of Links as the change in Layour options does not seem to be working.
Help.....
Regards,
Renato
The left menu I did as follows:
Then in the frontend.css I added a style like this:
That worked for the background color of the left pane, except for the background directly behind the {NAV_TABLE_COLUMN}. To change that color, pico's hint worked. So I changed the
into
The same applies to the link colors. Just change the
properties in the frontend.css to the colors you like. You can differentiate in setting different link colors in different sections by using <div id="yourstyle"> tags as you like.
Good luck!
Code: Select all
<div id="vol_left">
{NAV_TABLE_COLUMN}
</div>Code: Select all
#vol_left {
background-color: #3399ff;
height: 540px;
border-left: solid black;
border-right: thin solid black;
border-top: thin solid black;
border-bottom: thin solid black;
}Code: Select all
td, tr, th, p {
background-color: white;
vertical-align: top;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12px
} Code: Select all
td, tr, th, p {
background-color: #3399ff;
vertical-align: top;
font-family: Verdana, Helvetica, Arial, sans-serif;
font-size: 12px
}Code: Select all
a, a:link, a:visited, a:active {
color: blue;
background: transparent;
font-weight: normal;
text-decoration: none;
}
a:hover {
color: rgb(255,254,17);
background: rgb(30,115,255);
font-weight: none;
text-decoration: none;
}
Good luck!
I agree with you on that point. Although I still find phpWCMS currently the best CMS I used (which enabled me to get my site live with a fairly OK color scheme etc within days in stead of weeks or months) one of the questions I still have is: how are templates and generic layout related to each other?
If you use one, you seem to rule out the other.
I have posted this question earlier: http://www.phpwcms.de/forum/viewtopic.p ... highlight=
Unfortunately, there's no clear answer to that one yet.
Regards
-Hans
If you use one, you seem to rule out the other.
I have posted this question earlier: http://www.phpwcms.de/forum/viewtopic.p ... highlight=
Unfortunately, there's no clear answer to that one yet.
Regards
-Hans
That is really true.
I have put up my company website http://prova.co.in in about 10 days or so. That too with no experience absolutely.
I have no problems with template and layout as I use the colours from layout while the content is coming from template.
Do let me know if you need my setting.
Regards,
Renato
I have put up my company website http://prova.co.in in about 10 days or so. That too with no experience absolutely.
I have no problems with template and layout as I use the colours from layout while the content is coming from template.
Do let me know if you need my setting.
Regards,
Renato
Yes I would be curious to see them... I have posted mine in my other post.
Anyway, this is a good CSS resource if you need that: http://www.htmlhelp.com/reference/css/
This is one I use for HTML: http://www.htmlhelp.com/reference/html40/
Anyway, this is a good CSS resource if you need that: http://www.htmlhelp.com/reference/css/
This is one I use for HTML: http://www.htmlhelp.com/reference/html40/