sidebar to left instead of the right
sidebar to left instead of the right
how can i put the side bar to the left instead of the right, please help
Re: sidebar to left instead of the right
What theme do you use?mugs wrote:how can i put the side bar to the left instead of the right, please help
The sky is the sky and people are people wherever you go.
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Hm, that theme only supports a right sidebar. You would need to edit the index.tpl HTML sidebar code or the CSS code to make that fit...
Best regards,
Garvin
Hm, that theme only supports a right sidebar. You would need to edit the index.tpl HTML sidebar code or the CSS code to make that fit...
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Hi!
Since barsinister3 is a very complex theme, this cannot be done easily, you'll need some HTML and CSS skills. How familiar are you with that?
I can't do that for you currently, it would take me too much time -- maybe someone other can help you more specifically here!
Best regards,
Garvin
Since barsinister3 is a very complex theme, this cannot be done easily, you'll need some HTML and CSS skills. How familiar are you with that?
I can't do that for you currently, it would take me too much time -- maybe someone other can help you more specifically here!
Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Another 'problem' is that barSinister3 is 'content first', meaning that the actual content of the blog is generated first in the output code. One would definitely want to keep this.garvinhicking wrote:Since barsinister3 is a very complex theme, this cannot be done easily, you'll need some HTML and CSS skills. How familiar are you with that?
It is, however, possible to do a 'content first' template with the sidebar to the left, but it's a little bit tricky and prone to errors in various browsers.
Just my two cents ...
Hm. You never know unless you tried ... well, I tried a little bit this afternoon, and although I expected something different, it did actually work. Well, it did in Firefox/Linux, which doesn't mean too much, but you could try this:
#content:
- change float: left; to float: right;
- change margin-right: 11px to margin-left: 11px;
#serendipitySideBar:
- change float: right; to float: left;
#barsinister:
- change text-align: left; to text-align: right;
- mirror siteNewHeader_cropped.png
I haven't tried the last step, but the other two look very promising. However, I have no idea how this looks under Windows or in IE or Opera, so I won't promise anything ...
#content:
- change float: left; to float: right;
- change margin-right: 11px to margin-left: 11px;
#serendipitySideBar:
- change float: right; to float: left;
#barsinister:
- change text-align: left; to text-align: right;
- mirror siteNewHeader_cropped.png
I haven't tried the last step, but the other two look very promising. However, I have no idea how this looks under Windows or in IE or Opera, so I won't promise anything ...