menu and submenu problems

Discussion in 'BizWay WordPress Theme' started by jrigo, Feb 14, 2013.

  1. jrigo

    jrigo New Member

    Joined:
    Feb 11, 2013
    Messages:
    4
    Likes Received:
    0
    Hello,
    I purchased bizway pro theme

    but I have 2 problems:
    1) on Chrome, the second level submenus do not show up [eg Τα προγραμματά μας-->Baby Swimming--> Τι είναι το Baby Swimming]
    2) On Opera The sumbenu is shown in the wong place (at the center of the screen) you may see the screenshot

    Can you please help?
     

    Attached Files:

    • aaa.jpg
      aaa.jpg
      File size:
      238.8 KB
      Views:
      6
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Go to js > custom.js present in your theme directory and add the code given below

    Code:
    function css_browser_selector(u){var ua=u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1},g='gecko',w='webkit',s='safari',o='opera',m='mobile',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3.6')?g+' ff3 ff3_6':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('blackberry')?m+' blackberry':is('android')?m+' android':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?m+' j2me':is('iphone')?m+' iphone':is('ipod')?m+' ipod':is('ipad')?m+' ipad':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win'+(is('windows nt 6.0')?' vista':''):is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);
    

    Now,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .opera #menu .ddsmoothmenu li ul{
    margin-top:-90px;
    }

    This will solve your issue.
     
  3. jrigo

    jrigo New Member

    Joined:
    Feb 11, 2013
    Messages:
    4
    Likes Received:
    0
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Support mail sent.
     

Share This Page