[Theme: Adamos] Slider
-
This is my site http://tibness.webexperts.pt/ , my main issue is that i can’t make that white bar disappear , if i give it a color to the flexslider backgorund it doesn’t work, if i take the margin out or use position absolute for the logo it doesn’t stay responsive, and i would like the site the structure to be like this.
https://www.dropbox.com/s/jsp7ge3qmucqi6z/Fusion-Layout-Tibness-Home.jpg?dl=0
Is this possible without damaging the resposiveness of the site?
-
Up
Hey there vortex10,
Hope you’re well today!
Please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
.flex-container { margin-top: 0 !important; } .site-logo { position: absolute; z-index: 1; }This should display the slider and logo as on your image.
Hope this helps 🙂
Cheers,
BojanThanks for the answer Bojan, that was one of the things i tried however when u resize the window, or call the site in a mobile device, the logo destroy the theme
Hey again,
You can override the settings for smaller resolutions. As I can see your menu breaks to icon one on 1000px and less so you can place a logo above the navigation on resolutions 1000px and less. To do that you’ll have to use media queries, here is what you should add:
@media screen and (max-width: 1000px) { .site-logo { position: relative; } }This should fix the logo position on smaller resolutions.
Hope this helps 🙂
Best regards,
BojanMate really thank u 😉 i am kinda new working with responsive sites ure help was very important 😉
Glad I could help 🙂
Cheers,
Bojan
The topic ‘[Theme: Adamos] Slider’ is closed to new replies.