-
AuthorPosts
-
smartmax Friend
smartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 1:24 pm #730676Hi guys,
for our website on http://www.sanders.nl/drukkerijsanders/
some megamenu colors stay in the black color,
although the categorie has it’s colorFor example:
http://www.sanders.nl/drukkerijsanders/index.php/drukwerk
drukwerk= cat-purplebut in the submenu the colors are black?
http://www.sanders.nl/drukkerijsanders/index.php/monsterkamerWhere can I change this?
Other menu’s are ok?
http://www.sanders.nl/drukkerijsanders/index.php/vormgeving
http://www.sanders.nl/drukkerijsanders/index.php/print
http://www.sanders.nl/drukkerijsanders/index.php/websites
http://www.sanders.nl/drukkerijsanders/index.php/pakketten
http://www.sanders.nl/drukkerijsanders/index.php/statistics/specials:-[
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 1:29 pm #748241Hi there
I have just checked
<blockquote>but in the submenu the colors are black?
http://www.sanders.nl/drukkerijsande…p/monsterkamer</blockquote>It’s colored green . Is it correct or you want change something ?
Please let me know in detail.
Thank you,
Viet Vusmartmax Friendsmartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 1:37 pm #748242Hi Viet Vu,
I do not want to change anything,
I just don’t understand why
“MONSTERKAMER” (cat-green)
“DRUKWERK” (cat-purple)in the submenu showing in ‘black’?
While all the others seem to work fine.
Thanks!
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 1:43 pm #748243Hi there
I got it.
In each menu parent . They have one color, but sub menu all blacks.
It should be same as parent ?Please confirm than’ll help you check it.
Update:// It should be like screenshot below ?
Thank you,
Viet Vusmartmax Friendsmartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 1:50 pm #748245You lost me there :laugh:
‘DRUKWERK’ and ‘MONSTERKAMER’ should look like the others
(no black bars) > but purle and green barsjooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 1:53 pm #748246Hi there
Yup !
http://www.joomlart.com/forums/attachment.php?attachmentid=47127&d=1441979411
Please moment i’ll give you code for this.
Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 2:00 pm #748249Hi there
Here you are. Please apply this css code to custom.css
templates/ja_teline_v/css/custom.css
.t3-megamenu .cat-purple .module-title, .t3-megamenu .cat-purple .module-title:hover {
background: ##544794
color: #fff
}
.t3-megamenu .cat-green .module-title, .t3-megamenu .cat-green .module-title:hover {
background: #a9c606
color: #fff
}As you can see bold-ed above code is menu class name for each color. Not sure why, but for these color missed css for module title ( sub menu ).
Add above code to custom.css would solve it.You can also change color code in background: <colorcode> if needed. I have extract that color code from parent menu item background-color
Sorry mis-understood you from starting point.
Thank you,
Viet Vusmartmax Friendsmartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 2:13 pm #748253Hi Viet Vu,
You don’t need to ‘sorry’… I am already really glad that you are willing to help!
I just added you’re code in custom.css
But it don’t seem to work?It is still strange that the others work
and 2 don’t…jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 2:15 pm #748254Hi there
Would you mind provide me your site backend access ( via PM on forum ). i’ll work on it directly.
I have checked in at my side and it works with above code. It does not work before ( but another menu works ) because missed css code. That’s why i provided css above.
Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 2:21 pm #748255Hi there
I got why it not work at your side.
You have enter invalid css code ( Sorry i gave you missed “;” )https://www.dropbox.com/s/q7f2p8n72t35go0/2015-09-11_21-19-28.png?dl=0
It should be
.t3-megamenu .cat-purple .module-title, .t3-megamenu .cat-purple .module-title:hover {
background: ##544794
color: #fff
}
.t3-megamenu .cat-green .module-title, .t3-megamenu .cat-green .module-title:hover {
background: #a9c606
color: #fff
}
( Have ; after each css code line )Thank you,
Viet Vujooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 2:22 pm #748256Hi there
Please add ; after each css line code. Some how our forum tripped it when i posted above.Thank you,
Viet Vusmartmax Friendsmartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 2:32 pm #748259Hi Viet Vu,
This is what I got now, added the ‘ ; ‘
But still it doesn’t work?.t3-megamenu .cat-purple .module-title, .t3-megamenu .cat-purple .module-title:hover {
background: #544794
color: #fff
}
.t3-megamenu .cat-green .module-title, .t3-megamenu .cat-green .module-title:hover {
background: #a9c606
color: #fff
}We can solve this after the weekend, no rush :-[
website still works 😀smartmax Friendsmartmax
- Join date:
- May 2008
- Posts:
- 538
- Downloads:
- 159
- Uploads:
- 218
- Thanks:
- 72
- Thanked:
- 7 times in 3 posts
September 11, 2015 at 2:33 pm #748260??
I have added the ‘ ; ‘but it is gone in the code… straaanggggeeeeee
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
September 11, 2015 at 2:38 pm #748261Hi there
You still have missed ;
Please check screenshot belowhttps://www.dropbox.com/s/kwuphna8myllmfv/2015-09-11_21-38-04.png?dl=0
Thank you,
Viet Vu -
AuthorPosts
This topic contains 15 replies, has 3 voices, and was last updated by emrekilicer 7 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum