menu bar tab

Discussion in 'Local Business WordPress Theme' started by michel01, Mar 6, 2014.

  1. michel01

    michel01 Member

    Joined:
    Nov 13, 2013
    Messages:
    35
    Likes Received:
    0
    I would like to change one of my tabs across the menu bar to to different color like red.

    How do I do that without changing the entire column across my main page menu bar?
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Could you please share us your website link and also specify us with the help of screenshot images
    that which menu tab you want to change the color.
     
  3. michel01

    michel01 Member

    Joined:
    Nov 13, 2013
    Messages:
    35
    Likes Received:
    0
    My wordpress site is http://www.absoluteremotedosimetry.com
    I would like the log/logout color to be a different color.
    Also the Custom Favicon is not working on the site.
    Also the footer widgets on the site does not work proper on mobile/Ipad devices when you rotate vertically or horizontally.
    Also in my About Us page image contents are not centered in mobile/Ipad devices.
     

    Attached Files:

  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. Through menu id selector you can apply css style code only on particular menu item.

    For login menu,
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu li#menu-item-1092 a {
    background: red;
    }
    
    In place of "red" you can put your color or color code.

    But for logout menu,
    I am not able to login into your website, due to which unable to fetch the menu id of logout menu.

    2. For Custom Favicon issue,
    I think this issue maybe because of plugin. So please deactivate all plugins to see if this resolves the problem? If this works,
    re-activate the plugins one by one until you find the problematic plugin(s).

    3. For footer widget issue,
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer-wrapper .footer_widget .textwidget iframe {
    max-width: 100% ! important;
    }
    .footer-wrapper .footer_widget img {
    max-width: 100% ! important;
    } 
    4. For the image issue in about us page,
    paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
     #absolute_confidence > div.wp-tab-content > div > img {
    max-width: 100% ! important;
    }
    
    This will solve your issue.
     
  5. michel01

    michel01 Member

    Joined:
    Nov 13, 2013
    Messages:
    35
    Likes Received:
    0
    Thank you very much.
    How do I find the code for the LOGIN section of the menu bar. is it a different number like 1091 a. I don't know how to find it.
    Also, the menu bar is not set in one row in my mobile device/IPAD as it is on my desktop.
     

    Attached Files:

  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  7. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107

Share This Page