News:

Create A Forum Installed

Author Topic: Blanks - Please Help  (Read 994 times)

0 Members and 1 Guest are viewing this topic.

Offline simply sibyl

  • Full Member
  • ***
  • Posts: 189
  • Karma: 35
    • View Profile

Badges: (View All)
Level 4 Windows User Topic Starter
Re: Blanks - Please Help
« on: July 18, 2011, 05:13:24 pm »
Hi Cooldude.  That style hasnt been updated to work properly with 2.0 yet and Im not sure when Ill get a chance to do so.  There are some edits to the css for that style that you can do yourself however that will fix that and some other issues.
 
Modify the css for that style.   In the css:
 
Find:
Code: [Select]
dl.settings dt
{
    width: 48%;

Replace with:
Code: [Select]
dl.settings dt
{
    width: 40%;

 
Find:
Code: [Select]
dl.settings dd
{
    width: 48%;
    float: right;
    margin: 0 0
3px 0;
    padding: 0;
}

Replace with:
Code: [Select]
dl.settings dd
{
    width: 56%;
    float: right;
    overflow:
auto;
    margin: 0 0 3px 0;
    padding: 0;
}

 
Find:
Code: [Select]
#quickReplyOptions form textarea
{
    height: 100px;
    margin:
0.25em 0 1em 0;
}
Replace with:
Code: [Select]
#quickReplyOptions form textarea
{
    height: 100px;
    width:
635px;
    max-width: 100%;
    min-width: 100%;
    margin: 0.25em 0
1em 0;
}

 
Find:
Code: [Select]
/* Additional profile fields */
dl.register_form
{
    margin: 0;
   
 clear: right;
    /* overflow: auto; */
}

Replace with:
Code: [Select]
/* Additional profile fields */
dl.register_form
{
    margin: 0;
   
 clear: right;
}

 
Find:
Code: [Select]
#adm_container
{
    border-bottom: 1px solid #ccc;
    margin-bottom:
5px;
}

Replace with:
Code: [Select]
#main_container
{
    position: relative;
}

 
Find:
Code: [Select]
#main_admsection
{
    margin-left: 172px;
    overflow: hidden;
}

Replace with:
Code: [Select]
#main_admsection
{
    position: relative;
    left: 0;
    right:
0;
    overflow: hidden;
}

 
Find:
Code: [Select]
#creator dd
{
    float: left;
    width: 55%;
    margin: 0 0 10px
2px;
}

Replace with:
Code: [Select]
#creator dd
{
    float: right;
    width: 55%;
    margin: 0 0 10px
2px;
    overflow: auto;
}