Flat Awesome - PixelExit.com [Deleted]

What is the best way to place the sidebar to the left side? Right now its on the right

Try something like this:

Code:
#XenForo .mainContainer
{
float: right;
margin-left: -{xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
width: 100%;
}

#XenForo .mainContent
{
margin-left: {xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
}

#XenForo .sidebar
{
float: left;
}

In EXTRA.CSS
 
Try something like this:

Code:
#XenForo .mainContainer
{
float: right;
margin-left: -{xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
width: 100%;
}

#XenForo .mainContent
{
margin-left: {xen:calc '@sidebar.width + 10'}px;
margin-right: 0px;
}

#XenForo .sidebar
{
float: left;
}

In EXTRA.CSS

Thats working for me. Thank you!
 
Thats working for me. Thank you!

Forgot that will mess it up in mobile view when the sidebar drops:

Code:
@media (min-width:@maxResponsiveWideWidth)
{
   #XenForo .mainContainer
   {
     float: right;
     margin-left: -{xen:calc '@sidebar.width + 10'}px;
     margin-right: 0px;
     width: 100%;
   }
   
   #XenForo .mainContent
   {
     margin-left: {xen:calc '@sidebar.width + 10'}px;
     margin-right: 0px;
   }
   
   #XenForo .sidebar
   {
     float: left;
   }
}

Should do the trick.
 
The beta should work fine, won't be updating until stable release.
Thanks. Could you give me your opinion on this please? I have my style setup as Flat Awesome as the parent and a child theme of Flat Awesome. Whenever I upgrade the Flat Awesome theme it never upgrades the child theme along with it for some reason. Whenever I try to upgrade the child theme itself it completely wipes out all of my customizations. This has happened at least 3 versions in a row now and I cannot for the life of me figure out why its doing that.
 
Are you putting your changes into the child or the parent?

Any changes done in the child should preserve when you import and overwrite the parent for the most part.
 
Are you putting your changes into the child or the parent?

Any changes done in the child should preserve when you import and overwrite the parent for the most part.
Child, always. Parent is left as default. The only reason I bring it up is that it just happened again when I updated from 1.4.8 to 1.5 beta 1. Overwrote the parent and child didn't update.
 
Did you by chance import flat awesome directly as a child or did you go in and create a new style as a child of the parent flat awesome?
 
Did you by chance import flat awesome directly as a child or did you go in and create a new style as a child of the parent flat awesome?
The latter. I actually just redid it again since it got screwed up. Not exactly a pressing issue but I figured I'd get your take on it since you were here.
 
last question I'll leave you with as I'm taking off:

Is the version number customized on the child style? If so it would not update when you import the new flat awesome.

Side note I'm not sure if I did the version number on the beta xml I sent out to be honest. Anywho I can take a closer look tomorrow if you'd like
 
last question I'll leave you with as I'm taking off:

Is the version number customized on the child style? If so it would not update when you import the new flat awesome.

Side note I'm not sure if I did the version number on the beta xml I sent out to be honest. Anywho I can take a closer look tomorrow if you'd like
Not that I know of. It's good now since I redid it. We'll see how things go with the 1.5 final.

Thanks for taking the time.
 
Version 1.4.5 has an issue on the Account Upgrades page.

After an upgrade is purchased, an additional section is generated below the available options called "Purchased Upgrades". For some reason at this point, the breadBoxBottom and Footer end up INSIDE the <!-- main template --> container, which causes the footer to kind of float-right instead of act like a block level element.

I'm not sure which template to work with to fix this. Can anyone duplicate this and share a fix?
 
Back
Top Bottom