Go Back   WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 11-06-2009, 03:15 PM   #1
HyperActive Warrior
 
Join Date: Jan 2005
Location: , , USA.
Posts: 100
Thanks: 1
Thanked 0 Times in 0 Posts
Default how to move sidebar from right to left

Greetings,
Here is my stylesheet.css. How would I move the sidemenu from the right to the left?

Thanks,
Bob

body {
margin: 0;
padding: 0;
font-family: Arial;
text-align:center;
}
#header {
position: relative;
width: 731px;
margin-right: auto;
margin-left: auto;
margin-top: 0;
text-align: left;
}
#companytitle {
background-color: #C06330;
width: 731px;
}
#companytitle h1 {
margin: 0 1px 0px 10px;
padding-top: 5px;
font-size: 30px;
color: #fff;
background: inherit;
}
#companytitle h2 {
margin: 0 10px 0px 12px;
font-size: 16px;
font-weight:normal;
padding-top: 5px;
color: #fff;
background: inherit;
font-style:italic;
}
#banner {
width: 730px;
height: 374px;
margin: 1px 0px 0px 1px;
padding: 0px 0px 0px 0px;
background: url(images/head.jpg);
}
#menucontainer {
background-color: #C06330;
width: 731px;
height:30px;
font-size: 14px;
padding-left:1px;
padding-top:10px;
margin-top:1px;
}
#top-nav {
margin: 0;
padding: 0px 0px 20px 0px;
border-bottom: 1px solid #bbb;
}
#top-nav li {
margin: 0;
padding: 0;
display: inline;
list-style-type: none;
}
#top-nav a:link, #top-nav a:visited {
float: left;
padding: 0 20px 20px 20px;
text-decoration: none;
color: #fff;
background:inherit;
}
#top-nav a:link.active, #top-nav a:visited.active, #top-nav a:hover {
background:inherit;
color: #fff;
text-decoration:underline;
}
#content {
float: left;
width: 550px;
margin-top: 0;
padding: 1px;
}
#content p {
padding-left: 15px;
padding-right: 10px;
text-align:justify;
}
#content h1 {
margin: 10px 30px 0 10px;
padding: 3px;
font-variant: small-caps;
font-size: 1.4em;
color: #666;
background: inherit;
}
#footer {
clear:both;
width: 700px;
padding: 3px;
margin: 20px 0px 0px 10px;
border-top: 1px solid #ddd;
font-size: 11px;
text-align: left;
color: #333;
background: inherit;
}
#side-menu {
width: 150px;
margin: 0px 0px 0px 556px;
padding-left: 3px;
padding-top: 5px;
}
#side-menu h1 {
margin: 0px 0px 0px 0px;
font-variant: small-caps;
font-size: 1em;
color: #bf6753;
background: inherit;
}
#side-nav {
width: 95%;
margin: 5px 0px 5px 5px;
padding: 0;
list-style-type: none;
color: #333;
background:inherit;
}
#side-nav a {
background-color:inherit;
display: block;
width: 95%;
text-align: left;
text-decoration: none;
color: #bf6753;
font-size: 12px;
padding-bottom:3px;
padding-top: 3px;
border-bottom:1px;
border-bottom-style:double;
}
#side-nav a#current, #side-nav a:hover {
text-decoration: none;
background-color: #fff;
color: #000;
}
.sideheader {
color: #fff;
background: inherit;
text-align: center;
font-size: 12px;
font-variant: small-caps;
margin-top: 10px;
padding-top: 2px;
padding-bottom: 2px;
margin-bottom: 10px;
width:160px;
background-color: #C06330;
}
#links {
width:160px;
padding-bottom: 10px;
padding-top: 0px;
text-align: center;
border: 1px;
border-style:dashed;
}
#newsletter {
width:160px;
padding-bottom: 5px;
padding-top: 10px;
margin-bottom: 5px;
font-size: 12px;
text-align: center;
border: 1px;
border-style:dashed;
}
.nlform {
border-right: #ccc 1px solid;
border-top: #ccc 1px solid;
font-size: 8pt;
background: #ffffff;
border-left: #ccc 1px solid;
border-bottom: #ccc 1px solid;
font-family: "Verdana", "Arial"
}
jumpstart is offline   Reply With Quote
Old 11-06-2009, 04:05 PM   #2
Don't Drink and SEO
War Room Member
 
MikeFriedman's Avatar
 
Join Date: Oct 2009
Location: York, PA
Posts: 1,630
Thanks: 151
Thanked 418 Times in 302 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: how to move sidebar from right to left

Isn't it just

align: left;

???


HMA VPN - Cheaper than proxies. Access to over 17,000 IP addresses.
Need a cheap reliable VPS?
MikeFriedman is offline   Reply With Quote
Old 11-06-2009, 04:39 PM   #3
HyperActive Warrior
 
Join Date: Jan 2005
Location: , , USA.
Posts: 100
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: how to move sidebar from right to left

Its Direct Response Websites

Thanks
jumpstart is offline   Reply With Quote
Old 11-06-2009, 04:48 PM   #4
Don't Drink and SEO
War Room Member
 
MikeFriedman's Avatar
 
Join Date: Oct 2009
Location: York, PA
Posts: 1,630
Thanks: 151
Thanked 418 Times in 302 Posts
Social Networking View Member's Twitter Profile  View Member's YouTube Profile
Default Re: how to move sidebar from right to left

No I'm an idiot. Not "align".

It's float: right;


HMA VPN - Cheaper than proxies. Access to over 17,000 IP addresses.
Need a cheap reliable VPS?
MikeFriedman is offline   Reply With Quote
Old 11-06-2009, 04:56 PM   #5
HyperActive Warrior
 
Join Date: Jan 2005
Location: , , USA.
Posts: 100
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: how to move sidebar from right to left

I've tried that Mike and it did not work......thanks!
jumpstart is offline   Reply With Quote
Old 11-06-2009, 05:17 PM   #6
HyperActive Warrior
 
Join Date: Jan 2005
Location: , , USA.
Posts: 100
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: how to move sidebar from right to left

Thanks Nick......did you figure that out using Firebug?
jumpstart is offline   Reply With Quote
Old 11-06-2009, 06:10 PM   #7
Warrior Member
 
Join Date: Nov 2009
Posts: 19
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: how to move sidebar from right to left

hi... thanks
i get new info about mozilla addon from this forum
fajar78 is offline   Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > Warrior Support Forums > Website Design

Tags
left, move, sidebar

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 06:14 AM.