Search Results for 'rtl'

Results from the Forum
iha
tagDiv Member

Sorry i can’t active td-speed-booster plugin in my site because it’s makes this problem < you can try it on Arabic WordPress version or any other RTL WordPress version >

Marius
tagDiv Staff

Hi,
Can you provide a link to see the issue? The plugin is still in beta and we permanently improve it for compatibility with all functionality and common used plugins.

Thanks for the message!

iha
Participant
#0

HI

In normal without td-speed-booster :
http://prntscr.com/3luyhd

But when active the td-speed-booster plugin the main menu reversed like in image :
http://prntscr.com/3luzgj

not only in main menu but also on blocks styles so any help for that ?

Marius
tagDiv Staff

Hi,
We will try to fix that.
There are some missing CSS.

If you want to fix it add this CSS in Theme panel -> Custom CSS

.wpb_animate_when_almost_visible {
  opacity: 0;
}
.wpb_start_animation.wpb_top-to-bottom {
  -webkit-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  -moz-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Fx 5+ */
  -o-animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Opera 12+ */
  animation: wpb_ttb 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_bottom-to-top {
  -webkit-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  -moz-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Fx 5+ */
  -o-animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Opera 12+ */
  animation: wpb_btt 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_left-to-right {
  -webkit-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  -moz-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Fx 5+ */
  -o-animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Opera 12+ */
  animation: wpb_ltr 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_right-to-left {
  -webkit-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  -moz-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Fx 5+ */
  -o-animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Opera 12+ */
  animation: wpb_rtl 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
  opacity: 1;
}
.wpb_start_animation.wpb_appear {
  -webkit-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Safari 4+ */
  -moz-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Fx 5+ */
  -o-animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* Opera 12+ */
  animation: wpb_appear 0.7s 1 cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* IE 10+ */
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
/* Top to bottom keyframes */
@-webkit-keyframes wpb_ttb {
  0% {
    -webkit-transform: translate(0, -10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_ttb {
  0% {
    -moz-transform: translate(0, -10%);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_ttb {
  0% {
    -o-transform: translate(0, -10%);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_ttb {
  0% {
    transform: translate(0, -10%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Bottom to top keyframes */
@-webkit-keyframes wpb_btt {
  0% {
    -webkit-transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_btt {
  0% {
    -moz-transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_btt {
  0% {
    -o-transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_btt {
  0% {
    transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Left to right keyframes */
@-webkit-keyframes wpb_ltr {
  0% {
    -webkit-transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_ltr {
  0% {
    -moz-transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_ltr {
  0% {
    -o-transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_ltr {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Right to left keyframes */
@-webkit-keyframes wpb_rtl {
  0% {
    -webkit-transform: translate(10%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    opacity: 1;
  }
}
@-moz-keyframes wpb_rtl {
  0% {
    -moz-transform: translate(10%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: translate(0, 0);
    opacity: 1;
  }
}
@-o-keyframes wpb_rtl {
  0% {
    -o-transform: translate(10%, 0);
    opacity: 0;
  }
  100% {
    -o-transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes wpb_rtl {
  0% {
    transform: translate(10%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
/* Appear from center keyframes */
@-webkit-keyframes wpb_appear {
  0% {
    -webkit-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes wpb_appear {
  0% {
    -moz-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@-o-keyframes wpb_appear {
  0% {
    -o-transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    -o-transform: scale(1);
    opacity: 1;
  }
}
@keyframes wpb_appear {
  0% {
    transform: scale(0.5);
    opacity: 0.1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.wpb_animate_when_almost_visible{opacity:0}
.wpb_start_animation.wpb_top-to-bottom{-webkit-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_ttb .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_bottom-to-top{-webkit-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_btt .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_left-to-right{-webkit-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_ltr .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_right-to-left{-webkit-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_rtl .7s 1 cubic-bezier(.175, .885, .32, 1.275);opacity:1}
.wpb_start_animation.wpb_appear{-webkit-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-moz-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-o-animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);animation:wpb_appear .7s 1 cubic-bezier(.175, .885, .32, 1.275);-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);opacity:1}
@-webkit-keyframes wpb_ttb{0%{-webkit-transform:translate(0, -10%);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_ttb{0%{-moz-transform:translate(0, -10%);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_ttb{0%{-o-transform:translate(0, -10%);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_ttb{0%{transform:translate(0, -10%);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_btt{0%{-webkit-transform:translate(0, 10%);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_btt{0%{-moz-transform:translate(0, 10%);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_btt{0%{-o-transform:translate(0, 10%);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_btt{0%{transform:translate(0, 10%);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_ltr{0%{-webkit-transform:translate(-10%, 0);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_ltr{0%{-moz-transform:translate(-10%, 0);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_ltr{0%{-o-transform:translate(-10%, 0);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_ltr{0%{transform:translate(-10%, 0);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_rtl{0%{-webkit-transform:translate(10%, 0);opacity:0} 100%{-webkit-transform:translate(0, 0);opacity:1}}@-moz-keyframes wpb_rtl{0%{-moz-transform:translate(10%, 0);opacity:0} 100%{-moz-transform:translate(0, 0);opacity:1}}@-o-keyframes wpb_rtl{0%{-o-transform:translate(10%, 0);opacity:0} 100%{-o-transform:translate(0, 0);opacity:1}}@keyframes wpb_rtl{0%{transform:translate(10%, 0);opacity:0} 100%{transform:translate(0, 0);opacity:1}}@-webkit-keyframes wpb_appear{0%{-webkit-transform:scale(.5);opacity:.1} 100%{-webkit-transform:scale(1);opacity:1}}@-moz-keyframes wpb_appear{0%{-moz-transform:scale(.5);opacity:.1} 100%{-moz-transform:scale(1);opacity:1}}@-o-keyframes wpb_appear{0%{-o-transform:scale(.5);opacity:.1} 100%{-o-transform:scale(1);opacity:1}}@keyframes wpb_appear{0%{transform:scale(.5);opacity:.1} 100%{transform:scale(1);opacity:1}}

Thanks for the message!

julingn
tagDiv Member

Hi,

the mentioned links are sitelinks that google takes from the most important sites of your page. In my case those are pages that are not even linked in the main navigation. But you can partly control that via webmaster tools: https://www.google.com/webmasters/tools/home?hl=de

Make sure that you most important links get many internal links e.g. by a placed Top Pages Linklist in Footer or sidebar – and give it some time.

cheers,
Norman

Marius
tagDiv Staff

Hi,
Is not easy to hide the slider from code on mobile, this require a mobile detection from php, on css have this but is not the right solution.

Here is a condition from php to hide something if you want to try it. https://forum.tagdiv.com/topic/rtl-problem-on-change-sidebar-position/

And put this condition on the big slider here on this return: http://screencast.com/t/Dr8Oc69y0

Thanks!

iha
tagDiv Member

Ok RaduA , I Know what i did , so for others , the code in single.php

like
http://prntscr.com/3etgkb

so all it solved thank you RaduA , and sorry of wasted your Time .

the issue is closed here ,
Thank You ^_^

Radu A
tagDiv Member

hi,

well look for the get_sidebar() because this is what you are replacing.

iha, you see that we do offer support, but you are not a programmer, and you really don’t know what you are doing, please hire a programmer to modify the theme, it will save you (and us) of a lot of wasted time.

Thanks for you message.
Radu A.

iha
tagDiv Member

i need to
modify the code in the single.php file to make the same on single post,

where do i put/add this on single.php file ?

<?php if($deviceType == 'computer') {?>
            <div class="span4 column_container">
                <?php get_sidebar(); ?>
            </div>
        <?php }?>

and

<?php if($deviceType == 'phone') {?>
                <div class="span4 column_container">
                    <?php get_sidebar(); ?>
                </div>
            <?php }?>

please teach me that on single.php thank you RaduA ^_^
IHA

iha
tagDiv Member

Sorry Radu A , it did not work for me ,
but after that i’m searching for solution on Google i found to :

1) put Mobile_Detect.php file on the …
/wp-content/themes/Newspaper/

2) http://prntscr.com/3ej3ra

 include 'Mobile_Detect.php';
      $detect = new Mobile_Detect;
    $deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

then no problem on functions.php or error .

its after that work fine >
so because you are the best how can tell me , is it right or wrong ?

I thank you very much for your perfect help and i’m sorry for annoying ^_^

IHA

vexx
tagDiv Member

Hey Radu,

I’m not using the speed booster plug and I’ll try using the !important rule. Will report back shortly, thanks!

Radu A
tagDiv Member

hi,
add this lines at the end of functions.php file

$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

I have tested on my computer, it works.

Thanks for you message.
Radu A.

iha
tagDiv Member

hi,
i did all the steps but :

http://prntscr.com/3eadnz

leaded to :

http://prntscr.com/3eady8

please help < ^_^

iha
tagDiv Member

hi,
i do all the steps but :
http://prntscr.com/3eadnz

lead to :

http://prntscr.com/3eady8

please help < ^_^

Radu A
tagDiv Member

hi,
sorry for misunderstanding, what I have written was not wrong but was not a copy and paste solution.

1) download this package : https://github.com/serbanghita/Mobile-Detect

2) copy the file : http://screencast.com/t/VpXwx0Oh7 here : http://screencast.com/t/ZWuXFw3g0

3) add this code in the function.php file

$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

like here : http://screencast.com/t/8KSWWhcmhNT

4) modify the code in the category.php file

<?php if($deviceType == 'computer') {?>
            <div class="span4 column_container">
                <?php get_sidebar(); ?>
            </div>
        <?php }?>

and


 <?php if($deviceType == 'phone') {?>
                <div class="span4 column_container">
                    <?php get_sidebar(); ?>
                </div>
            <?php }?>

like here: http://screencast.com/t/bGwnf90qhi

Thanks for you message.
Radu A.

iha
tagDiv Member

Hi Marius,
But all problems begun when i change sidebar Theme panel to be on left , I need sidebar to be in left position and the post is on top or first to show at mobile view > so please is there any help ?

Marius
tagDiv Staff

Hi,
You need to use the sidebar from Theme panel to be on right to avoid that issue on mobile.

The issue is that if the sidebar is on left side is first in code and on mobile will be the first to.

Hope this help!

iha
tagDiv Member

thank you for reply,

i did what you told me :

http://prntscr.com/3czraj

http://prntscr.com/3czsbu

then the sidebar goes down

http://prntscr.com/3czsoz

i need the change not for categories only but also for single posts

so please help me ^_^

iha
tagDiv Member

thank you for reply,

i did what you told me :

http://prntscr.com/3czraj

http://prntscr.com/3czsbu

then the sidebar goes down
http://prntscr.com/3czsoz

i need the change not for categories only but also for single posts

so please help me ^_^

Radu A
tagDiv Member

hi,

http://screencast.com/t/n0D20EyP

like here : http://screencast.com/t/HQ27X2PUiY

Thanks for you message.
Radu A.

iha
Participant
#0

HI Sir,
The problems on RTL or even on normal WordPress EN ,
My Site is on RTL (Arabic) , so
That when default CUSTOM SIDEBAR + POSITION on left postion .
Shows like
http://prntscr.com/3cvbge
or
left postion

On mobile views shows like :

http://prntscr.com/3cvc9k
or
left side on mobile

That all fine and perfect , but the problem is when i change the options to Right sidebar :
http://prntscr.com/3cvd6q
or
change options to right sidebar

My site show normally on Desktop :

http://prntscr.com/3cve5q
or
right sidebar

but the problem in the mobile view :
http://prntscr.com/3cvfy0
or
the sidebar show first  :(

so please i need to change sidebar postion to left and the post shows first then the sidebar sows second like it shows on the right position, so i’m waiting for your help ,
I Thank you , for your wonderful theme , ^_^ .

Marius
tagDiv Staff

Hi,
The theme will switch automatic to RTL if you put your WordPress in Arabic language.

Or use this: http://ar.wordpress.org/ and activate the theme. If you want you can install the demo data, this will build the homepage to.

Thanks for the message!

stefanwalter
Participant
#0

Hi guys,

How do I move the header ad space to the left (desktop view)? I want to keep the banner at this size (728×90) so it basically has to be (partly) on top of the fixed logo space on the left (300px width).

Here’s our page: http://www.habloandalu.es/

Thanks for your suggestions!

Best,
Stefan

acay
Participant
#0

Hello,

I love your newspaper theme and i purchased so fast, but i got some issue with RTL language (Arabic).

so could you help me to make my blog works good with your theme

i want my blog to looks like your demo layout but for RTL Arabic language please.

Radu A
tagDiv Member

hi,
when you install wordpress choose a RTL language and wordpress will detect your language and it will switch the theme to RTL.

you can also use a plugin like: http://wordpress.org/plugins/wp-rtl/

Thanks for you message.
Radu A.

Viewing 25 results - 1,676 through 1,700 (of 1,719 total)