PDA

View Full Version : RTL Languages empty space and log in box bugs.



Maaz Surchy
January 3, 2013, 11:08 PM
Hello dear

I figured out that when I installed bookmark plugin I got empty space in RTL language (kurdish) and login box won't appear in other pages than the homepage.

Here are some screen caprtures:

295296297298299

I don't know if there is a bug in the Bookmark plugin or in the Flynax v. 4.1?

Viktor
January 4, 2013, 03:39 AM
Hello Maaz,

Can you give me ftp access details in PM please I will check it and solve ASAP.

Ali Alkhaja
January 4, 2013, 09:00 AM
I am facing the same problem

Viktor
January 4, 2013, 11:39 AM
Hello all,

You should create new file rtl.css and insert code in:



.at_a11y
{
height: 1px !important;
overflow: hidden !important;
position: absolute !important;
left: auto !important;
right: -10000px !important;
top: auto !important;
width: 1px !important;
}


then save this file to: ftp://plugins/bookmarks/static/

Then go to database in table your_prefix_hooks find line with name: 'tplHeader' for plugin: 'bookmarks'

and code:



echo '<link href="'. RL_PLUGINS_URL .'bookmarks/static/style.css" type="text/css" rel="stylesheet" />';


and after it add new code:



if(RL_LANG_DIR == 'rtl')
{
echo '<link href="'. RL_PLUGINS_URL .'bookmarks/static/rtl.css" type="text/css" rel="stylesheet" />';
}


save and check again.

Maaz Surchy
January 4, 2013, 12:32 PM
Full speed response.

Thank you Viktor