*

Recent

Author Topic: [Mod] Move Sidebar on Tiles and Mini Tiles Theme  (Read 3157 times)

am-fs

  • Owner
  • Developer
  • Full Member
  • ******
  • Posts: 228
  • Force: +1/-0
    • Great Flash Games
[Mod] Move Sidebar on Tiles and Mini Tiles Theme
« on: October 25, 2014, 01:22:28 PM »
This is a simple mod to move the sidebar on Tiles and Mini Tiles from right to left.
templates/styles.css

Change right to left on #content and #content2
Change left to right on #side.

Find:
Code: [Select]
#content
{
        clear: right;
  float: right;
        width: 71%;
  padding: 4px 0;
margin: 0 1% 0 1%;
display: inline;
        border-radius: 10px;
border: 2px ridge #000;
}

Change to:
Code: [Select]
#content
{
         clear: left;
  float: left;
width: 71%;
    padding: 4px 0;
margin: 0 1% 0 1%;
display: inline;
         border-radius: 10px;
border: 2px ridge #000;
}

Find:
Code: [Select]
#content2
{
        clear: right;
float: right;
width: 698px;
        margin-top: 6px;
        margin-bottom: 4px;
        margin-right: 4px;
        margin-left: 4px;
display: inline;
background: #CCC;
        border-radius: 10px;
border: 2px ridge #000;
}

Change to:
Code: [Select]
#content2
{
        clear: left;
float: left;
width: 698px;
        margin-top: 6px;
        margin-bottom: 4px;
        margin-right: 4px;
        margin-left: 4px;
display: inline;
background: #CCC;
        border-radius: 10px;
border: 2px ridge #000;
}

Find:
Code: [Select]
#side
{
        float: left;
width: 242px;
padding: 4px 0;
margin: 0 1% 1% 1%;
display: inline;
        border-radius: 10px;
border: 2px ridge #000;
}

Change to:
Code: [Select]
#side
{
        float: right;
width: 242px;
padding: 4px 0;
margin: 0 1% 1% 1%;
display: inline;
        border-radius: 10px;
border: 2px ridge #000;
}