How can I move up the flex slider because it’s not align with the sidebar and how can i adjust the margin of the page? thanks in advance.
Hi,
Please provide your site url.
Only then I will be able to give you example custom css code.
This is a duplicate of https://theme4press.com/support/topic/resize-the-sidebar-and-adjust-the-margin/
Please only ask your related question in this thread.
Thanks!
Denzel
Hi,
Please kindly place the following codes in your Theme Options -> Custom CSS
For flexslider,
It will move up your flexslider to the same level as sidebar.
#wooslider-id-1 {
position: relative;
top: -25px;
}
For the sidebar width, the following will reduce it to 300px.
#secondary {
max-width: 300px !important;
}
As for the page margin, I assume you want to move the content’s container. This is not advisable, but you can try out the following code. Which will push all content to right, widening the “left margin”.
@media only screen and (min-device-width:1024px){
.container.container-center.row {
margin-left: 300px !important;
}
}
The above are working examples and all you need is to change the number of px
Thanks!
Denzel
Hi, Denzel
I used the css for the side bar, it worked but i thought it will give more space to the content. is there any other workaround?
Thanks in advance
Hi there,
Thanks for writing in,
As your website is in coming soon mode so I couldn’t check it. However to achieve more width in your content you can add following code under Appearance > Theme Options > Custom CSS:
#primary {
width: 74%;
}
Thanks.
The topic FlexSlider is closed to new replies