News:

Create A Forum Installed

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

0 Members and 1 Guest are viewing this topic.

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Blanks - Please Help
« on: July 17, 2011, 07:24:26 pm »
Hello,


when I try to edit my boards on My Forum, it does not show anything.


I am trying to edit my boards and this is what happens. [ Picture of Forum ]
It is not only this option, it is everything i try to edit.
Please find a solution to this, thanks.


best regards,
CoolDude

Share on Facebook Share on Twitter


Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: Blanks - Please Help
« Reply #1 on: July 17, 2011, 07:33:15 pm »
What browser are you using?
Also does it occur with the default style?
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #2 on: July 17, 2011, 07:35:45 pm »
I am currently using Google Chrome, and I cannot check if it works on the default style because I can't see anything. When I go to the style manager, it's the same.




Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #3 on: July 17, 2011, 07:46:06 pm »
I have also just tested it on IE, the results were the same.

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #4 on: July 18, 2011, 05:32:25 am »
Can someone please solve this problem? I really want to edit my forum.

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: Blanks - Please Help
« Reply #5 on: July 18, 2011, 05:35:28 am »
Can you me login information of an admin or give an admin account.
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #6 on: July 18, 2011, 05:39:17 am »
I have private messaged you the log in details to the forum.

Offline CreateAForum

  • Administrator
  • *****
  • Posts: 7186
  • Karma: 327
    • View Profile

Badges: (View All)
Avatar Linux User Tenth year Anniversary
Re: Blanks - Please Help
« Reply #7 on: July 18, 2011, 05:42:49 am »
Looks like a style issue. Scroll down on that page and use the scollbar to edit the boards. You should see it if you scroll down.
Like Create A Forum? Support me at https://www.patreon.com/vbgamer45/

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #8 on: July 18, 2011, 05:44:01 am »
Oh, I cannot believe I did not catch that.


Well I will switch it back to the default, thanks so much.

Offline simply sibyl

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

Badges: (View All)
Level 4 Windows User Topic Starter
Re: Blanks - Please Help
« Reply #9 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;
}

 

Offline CoolDude

  • Newbie
  • *
  • Posts: 7
  • Karma: 0
    • View Profile

Badges: (View All)
Topic Starter Level 1 First Post
Re: Blanks - Please Help
« Reply #10 on: July 19, 2011, 03:10:41 pm »
I will edit this in the Style Manager, correct?

Offline simply sibyl

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

Badges: (View All)
Level 4 Windows User Topic Starter
Re: Blanks - Please Help
« Reply #11 on: July 19, 2011, 03:42:12 pm »
Correct.
Go to Style Manager
Click on "Styles"
Across from the style you want to modify click "Modify Style"
Next screen will be the css.
tip: You can search thru it using your browsers search feature