Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #337369

    Hi Guys,

    Im here again..

    I followed this instruction..
    http://sevenspark.com/docs/ubermenu-3/theme-integration/enfold

    My problem is that my picture background of my header is not align with the menu,,

    I want the height of my background image to 137 px.. as you can see there’s a green in below the background image.. i want to eliminate that,,

    Thanks for the support

    • This topic was modified 10 years, 1 month ago by jalmz.
    #337375

    Hi jalmz!

    Please add following code to Quick CSS

    .header_color .header_bg { background-color: transparent; }

    Cheers!
    Yigit

    #337391

    Thanks Yigit..

    but look..

    I want the background image align with the menu…

    #337450

    Anyone?

    • This reply was modified 10 years, 1 month ago by jalmz.
    #337855

    Hey!

    Here’s how your header looks on my end – http://screencast.com/t/Uqyiq2oan

    Regards,
    Josue

    #337873

    Hi Josue,

    Its ok now.. I still have one problem Josue,

    my search bar

    I ask help from the plugin author but still he cannot solve the problem

    Hi jalmz,

    The only thing that I see that is different is that the theme is adding a margin with this code in base.css:

    1
    2
    #top form {
    margin-bottom: 20px; }
    You can override it with

    1
    2
    3
    #top .ubermenu form {
    margin-bottom:0;
    }
    Hope that helps,

    Chris

    • This reply was modified 10 years, 1 month ago by jalmz.
    #338439

    Hi!

    This is how it looks on my end – http://i.imgur.com/ZgIhYLc.png
    Have you already figured it out?
    Also, you have following code added twice in Quick CSS which moves breadcrumbs below menu

    .title_container .breadcrumb {
    top: 15% !important;
    }

    Regards,
    Yigit

    #338798

    Hi Yigit,

    Yes and the fix is..

    Looks like you must be using Windows, since that does not occur in any browser on Mac. Looks like that browser displaces the input with the scrollbar. Looks like the theme is adding margin-bottom to all text inputs as well:

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    #top .input-text,
    #top input[type=”text”],
    #top input[type=”input”],
    #top input[type=”password”],
    #top input[type=”email”],
    #top input[type=”number”],
    #top input[type=”url”],
    #top input[type=”tel”],
    #top input[type=”search”],
    #top textarea,
    #top select {
    -webkit-appearance: none;
    border: 1px solid #e1e1e1;
    padding: 8px 6px;
    outline: none;
    font: 13px “HelveticaNeue”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    color: #777;
    margin: 0;
    width: 210px;
    max-width: 100%;
    display: block;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 0px;
    }
    Try adding:

    1
    #top .ubermenu .ubermenu-search-input{ margin: 0; }
    Hope that helps,

    Chris

    Thanks Yigit

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘UberMenu 3’ is closed to new replies.