News:

Want to get involved in developing SMF? Why not lend a hand on our GitHub!

Main Menu

Clear space in Admin page

Started by lttung, November 22, 2012, 01:19:48 PM

Previous topic - Next topic

lttung

Hello all,

When i setting in admin page, from "Admin menu bar" to other config menu very long space (View pic:)





Only error in this theme
Please help me to fix

Thanks

Antechinus

You're using an old version of the theme. If you add this to the end of your index.css it should fix it:

#main_admsection {overflow: auto;}

lttung

Quote from: Antechinus on November 22, 2012, 02:53:42 PM
You're using an old version of the theme. If you add this to the end of your index.css it should fix it:

#main_admsection {overflow: auto;}

Thanks, affter add you code, space in under cleared, but have new place (in right), how to clear:



thanks

Antechinus

Ah. That's an old bug. I remember that one. :D

From memory, using relative positioning on these bits fixed it:

#main_container
{
position: relative;
}
#main_admsection
{
position: relative;
left: 0;
right: 0;
overflow: auto;
}


lttung

left: 0;
right: 0;


I keep 0 and add to the end of  index.css, but still failed :(


Antechinus


lttung

Sorry, i don't know PHP. I insert this code:
#main_container
{
position: relative;
}
#main_admsection
{
position: relative;
left: 0;
right: 0;
overflow: auto;
}


to end of index.css. But can't repair

Antechinus

Ok, suggestion: get the latest version of the theme, instead of trying to update an old version.

http://www.dzinerstudio.com/index.php?action=downloads;sa=view;down=134

Kindred

and, more importantly, ask for support on specific theme-related issues in the support topic (or the support site) for that specific theme. :)
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

lttung

Found solution:
find this in index.css
/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
width: 990px;
margin: 0 auto;
}

and change to
/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
width: 100%;
margin: 0 auto;
}

Antechinus

That code has nothing to do with the area in your screenshot.

Advertisement: