MyBB Community Forums

Full Version: Hi
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8
Quote:listen- i need to change the sides of the admin CP - where i change?
./admin/adminfunctions.php -> cpheader() function.

Quote:In the file inc/settings.php
I need the line under the line:
$settings[movedprefix]
I don't understand that at all. The prefixes and such are now managed via the language system instead of using settings, so you shouldnt need to change that.
Chris Boulton Wrote:
Quote:In the file inc/settings.php
I need the line under the line:
$settings[movedprefix]
I don't understand that at all. The prefixes and such are now managed via the language system instead of using settings, so you shouldnt need to change that.

yes, I know.
but I had some problem with the test forum...
but I fix that
ty
Chris Boulton Wrote:
Quote:listen- i need to change the sides of the admin CP - where i change?
./admin/adminfunctions.php -> cpheader() function.

Where in the admin/adminfunctions.php file I am changing the size?
I can't find a <html> functions that I can change to <html dir=rtl>
Where is it?

And anther thing where I am changing the side of the "-" and "+" near the name of the forum
I need to change it to the left size.. look how it is here
http://all4u.level-serv.net/mybb/


And the above button "user cp", "member list", "search", "help", "calendar", "home".
And the under button "contact us", "mybb", "return to top", "return to content", "syndication".
how I am changing them to the right side
	echo "<html>\n";
Thats the line, admin/adminfunctions.php.

Quote:And anther thing where I am changing the side of the "-" and "+" near the name of the forum
I need to change it to the left size.. look how it is here
http://all4u.level-serv.net/mybb/

For the expand and collapse images, edit the template 'css' and change the '.excolimage {.... }' section to:

.expcolimage {
float: left;
width: auto;
vertical-align: middle;
}

For the menu, in .menu li { and .menu a { change float: left; to float: right;

As for the logo, if you're going to be redistributing it as a translation please leave the logo as it is.
Chris Boulton Wrote:
	echo "<html>n";
Thats the line, admin/adminfunctions.php.

I change "echo "<html>n";" to echo "<html dir=rtl>n";"
But it's doesn't help

Quote:And anther thing where I am changing the side of the "-" and "+" near the name of the forum
I need to change it to the left size.. look how it is here
http://all4u.level-serv.net/mybb/

For the expand and collapse images, edit the template 'css' and change the '.excolimage {.... }' section to:

.expcolimage {
float: left;
width: auto;
vertical-align: middle;
}

For the menu, in .menu li { and .menu a { change float: left; to float: right;

As for the logo, if you're going to be redistributing it as a translation please leave the logo as it is.
[/quote]

I don't understend in what file is this 2 things
Admin CP > Templates > Modify/Delete > *template set* > css > Change Original > then follow his instructions.
omg.. it's worked

ty!!!

But I don't successes with the admin cp
what I can do to change the side?
nir Wrote:omg.. it's worked

ty!!!

But I don't successes with the admin cp
what I can do to change the side?

pls
i need help!
I success to change the sides of the nav..
But don't all of the other files.
How I am changing their sides?
So in adminfunctions.php you changed:
	echo "<html>\n";

To:
	echo "<html dir=rtl>\n";

?
Pages: 1 2 3 4 5 6 7 8