- Posts: 6
- Thank you received: 0
Bokeh and menu dropdown problems
-
admin@the-chosen.li
Inactive member - Topic Author
- New Member
Less
More
10 years 3 months ago #41655
by admin@the-chosen.li
Replied by admin@the-chosen.li on topic Bokeh and menu dropdown problems
im not sure if i understand you right.
When i am resize the browser i get a dropdown menü but with transparent menü.
Show this pic:
www.directupload.net/file/d/3745/djvpez9j_jpg.htm
but the problem still exists
sorry for late answer i was i holyday and had much to work.
When i am resize the browser i get a dropdown menü but with transparent menü.
Show this pic:
www.directupload.net/file/d/3745/djvpez9j_jpg.htm
but the problem still exists
sorry for late answer i was i holyday and had much to work.
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 3 months ago #41658
by ivan.milic
Replied by ivan.milic on topic Bokeh and menu dropdown problems
Ok but that does not look like that on mobile phone. If you want to correct it anyway put this css at bottom of template_css.css:
SELECT.tinynav, SELECT.tinynav option{
color:black;
}
SELECT.tinynav, SELECT.tinynav option{
color:black;
}
Please Log in to join the conversation.
-
admin@the-chosen.li
Inactive member - Topic Author
- New Member
Less
More
- Posts: 6
- Thank you received: 0
10 years 3 months ago #41799
by admin@the-chosen.li
Replied by admin@the-chosen.li on topic Bokeh and menu dropdown problems
thank you
but the other problem still exist.
the menü "Events" flash's when i make a mousover, but only on the Home Page.
any solution?
Thanks
but the other problem still exist.
the menü "Events" flash's when i make a mousover, but only on the Home Page.
any solution?
Thanks
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 3 months ago #41801
by ivan.milic
Replied by ivan.milic on topic Bokeh and menu dropdown problems
What was your site link?
Please Log in to join the conversation.
-
admin@the-chosen.li
Inactive member - Topic Author
- New Member
Less
More
- Posts: 6
- Thank you received: 0
10 years 3 months ago #41803
by admin@the-chosen.li
Replied by admin@the-chosen.li on topic Bokeh and menu dropdown problems
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 3 months ago #41804
by ivan.milic
Replied by ivan.milic on topic Bokeh and menu dropdown problems
Try this, open:
/templates/hot_bokeh/js/jquery.hjt.navv.js
locate this code:
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first').stop(true,true)[options.effect](options.speed);
});
modify if like this:
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first:not(:visible)').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first:visible').stop(true,true)[options.effect](options.speed);
});
/templates/hot_bokeh/js/jquery.hjt.navv.js
locate this code:
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first').stop(true,true)[options.effect](options.speed);
});
modify if like this:
jQuery('.navv li').hover(function(){
jQuery(this).find('ul:first:not(:visible)').stop(true,true)[options.effect](options.speed);
},function(){
jQuery(this).css('position', 'relative')
.find('ul:first:visible').stop(true,true)[options.effect](options.speed);
});
Please Log in to join the conversation.
Time to create page: 0.078 seconds