I used template builder elements to create my home page.
I used element products and forced side bar.
I would the sidebar at home page only, to be on the right (and products on left).
Is it possible?
I used template builder elements to create my home page.
I used element products and forced side bar.
I would the sidebar at home page only, to be on the right (and products on left).
Is it possible?
Hi!
Did you try to change the "Dynamic Template Page Layout" to "left sidebar"? You can change the layout for each template individually.
Regards,
Peter
Hi Dude,
I created a home page with the template builder using elements.
I created it so it would look like your demo home page with a sidebar under the products slider.
The site is in Hebrew, so I aligned by default sidebar to appear on the left.
I would like that the particular sidebar on page page will appear on the right. The element of force sidebar does not give me the option to put this side bar on the right and goes by default to the left.
Is there a way to put this particular sidebar at home page on the right?
Hi eyeweb,
I'm not really clear on what you mean. Can you provide a link to the site and link to a screenshot showing the dynamic template settings for the homepage? You can host the screenshot on a site like http://tinypic.com/
Regards,
Devin
Here is the screenshot:
http://tinypic.com/view.php?pic=6hki90&s=6
site:
http://bouqueto.wptrail.info/
Thank you.
Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:
#top.home .sidebar_left .content {
float: left;
margin-left: 0;
}
#top.home .sidebar.sidebar_left.three.units {
float: right;
clear: none;
}
It will only work for the home page but it should do the trick.
Regards,
Devin
Hi Devin,
It works, but can I move the vertical line of the sidebar to the left?
Try modifying the above css to be:
#top.home .sidebar_left .content {
float: left;
margin-left: 0;
}
#top.home .sidebar.sidebar_left.three.units {
float: right;
clear: none;
}
#top.home .sidebar.sidebar_left.three.units .inner_sidebar{
border-right: none;
border-left: 1px solid;
padding-right: 0;
padding-left: 20px;
border-color: #e1e1e1;
}
Regards,
Devin
You must log in to post.