-
AuthorPosts
-
October 17, 2014 at 3:25 pm #337369
Hi Guys,
Im here again..
I followed this instruction..
http://sevenspark.com/docs/ubermenu-3/theme-integration/enfoldMy 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.
October 17, 2014 at 3:27 pm #337375Hi jalmz!
Please add following code to Quick CSS
.header_color .header_bg { background-color: transparent; }
Cheers!
YigitOctober 17, 2014 at 3:47 pm #337391Thanks Yigit..
but look..
I want the background image align with the menu…
October 17, 2014 at 5:17 pm #337450Anyone?
- This reply was modified 10 years, 1 month ago by jalmz.
October 19, 2014 at 5:35 am #337855October 19, 2014 at 6:06 am #337873Hi 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 with1
2
3
#top .ubermenu form {
margin-bottom:0;
}
Hope that helps,Chris
- This reply was modified 10 years, 1 month ago by jalmz.
October 20, 2014 at 4:40 pm #338439Hi!
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,
YigitOctober 21, 2014 at 2:02 am #338798Hi 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
-
AuthorPosts
- The topic ‘UberMenu 3’ is closed to new replies.