Jump to content
Sign in to follow this  
amirrainer

RTL in 2.3

Recommended Posts

amirrainer

Hi guys,

Since upgrading to pagelines 2.3 i encountered two problems with RTL (hebrew) which didn't exist before.

1. branding is aligned left, but not correctly. also, unable to center the branding as i did before, using " .mainlogo-img{margin:0 auto;} ".

2. wordpress comments are aligned to left and not to the right. it was fine before the upgrade.

thanks,

Amir.

Share this post


Link to post
Share on other sites
Rob

Amir,

Likely the problem comes from a change in our CSS. If you use Firebug for Firefox or Chrome's Inspection Tools, you'll be able to see the selectors and be able to fix easily.

Since the site's not presently visible, I cannot offer any specific CSS, but Firebug's your best solution!


Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites
Danny

Hi Amir,

Try adding the following code and see if this resolves your issue:


// Center Branding Image
#site .section-branding .content-pad { padding: 25px 0 0; }
#site .plbrand.mainlogo-link { float: none !important; }
#site .section-branding .mainlogo-img { margin: auto; }

//Comments
#site .section-wp-comments form { text-align: right; [/CODE]


Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

Hi Danny,

thanks for the quick reply. it works pretty well, 2 minor issues though:

1. too much white space between the branding and menu.

2. reply-title isn't aligned to the right.

many thanks,

Amir.

Share this post


Link to post
Share on other sites
Danny

Hi Amir,

1. Add this to resolve the white space issue.

.section-branding .icons { display: none; }
2. To resolve the Reply title, add the following code:


#site .section-wp-comments.wp-comments-pad h3 {
background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat right 50%;
text-align: right;
}[/code]


Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

Hi,

white space is gone :)

but when adding to code for the reply title I get Warning: Invalid argument supplied for foreach() in /home/onlinepr/public_html/events/wp-content/themes/pagelines/includes/less.plugin.php on line 431"

tried adding "#site" before, which didn't help.

your support is great! thanks!

Share this post


Link to post
Share on other sites
amirrainer

.section-wp-comments.wp-comments-pad h3 {

background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat right 50%;

text-align: right;

}

}

Share this post


Link to post
Share on other sites
catrina

Please remove the the extra bracket at the end of the code (this bracket is unnecessary and it might be breaking your code).


Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites
amirrainer

thanks for your reply. error is gone, but reply title stays on the left.

Share this post


Link to post
Share on other sites
batman

Hi amir

Please you can try with

#respond #reply-title {text-align: right;}


Life is too short to remove USB safely ...

Share this post


Link to post
Share on other sites
Danny

Hi Amir,

Try Batman's code, if that doesn't work, I have updated my code above, which should work for you.


Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

Hi Batman&Danny,

Batman's code works great, only thing left is to align the pin icon to the right as well...

Share this post


Link to post
Share on other sites
batman

Hi again, I´m not sure but

You can try with


#respond #reply-title {

    text-align: right;

    margin-left: 600px;}


Life is too short to remove USB safely ...

Share this post


Link to post
Share on other sites
amirrainer

Hi, the icon moved, but not enough. tried 1100px, which was almost enough, but it won't move further right when adding more pixels...

thanks very much!

Share this post


Link to post
Share on other sites
Danny

Hi,

Remove the code above suggested by Batman and replace it with this, which should resolve your issue.


#site .section-wp-comments h3 {
background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat 100% 50%;
}[/CODE]


Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

replacing the code sends reply-title back to the left..

Share this post


Link to post
Share on other sites
Danny

OK, use the code below:


#site .section-wp-comments h3 {
background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat 100% 50%;
text-align: right;
}[/CODE]


Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

Hi,

The icon is still aligned left.

this is the entire code used:


body{}

// Center Branding Image

#site .section-branding .content-pad { padding: 25px 0 0; }

#site .plbrand.mainlogo-link { float: none !important; }

#site .section-branding .mainlogo-img { margin: auto; }

#site .section-branding .icons { display: none; }

#site .section-wp-comments form {text-align: right;}


#site .section-wp-comments h3 {

background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat 100% 50%;

text-align: right;

}

Share this post


Link to post
Share on other sites
Danny

Hi,

I see the what is the issue here, we were looking at different h3 and images. I was looking at the h3 above comments, whilst you were looking at the h3 "Leave a Reply". Therefore, replace the code you have which I provided previously and replace it with the code below.

#site #reply-title, #site .section-wp-comments h3 {
background: url(http://onlinepresence.co.il/events/amalya-meitiv/wp-content/themes/pagelines/sections/comments/[email protected]) no-repeat 100% 50%;
text-align: right;
background-size: 17px;
padding-right: 25px;
}
[/CODE]

  • Like 1

Please search our forums, before posting!

Share this post


Link to post
Share on other sites
amirrainer

Brilliant!!! works perfectly.

thanks for the help :)

Share this post


Link to post
Share on other sites
Danny

The topic was marked as resolved.


Please search our forums, before posting!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

  • Similar Content

    • janpeeters
      By janpeeters
      Over the last month I had extensive communications with the developer of the (premium) Anything Boxes section (in Pagelines store) (Adam Munns) and the developer of the WP Polylang Multilingual plugin (Frederic Demarle).
       
      This was because the following problem occurred:
      Anything Boxes showed all posts of two languages (Dutch and English) on the respective static frontpages for each language. It should of course have filtered posts for Dutch language on the Dutch frontpage and English on the English frontpage.
       
      The solution to this problem was simple in the end. When duplicating a page for use in another language the settings for Anything Boxes were not copied to the new page and I should have set these settings manually again on the new page. I wasn't aware of this, but it makes sense. Because of this the pages didn't know how to differentiate between posts from different languages.
       
      The dev of Polylang told me that Polylang is currently smart enough to synchronize metas like Featured images and page templates but it does not work out of the box with metas created by plugins and themes but (according to Frederic) it is rather easy to add them in the list using the filter 'pll_copy_post_metas'.
      He mentions that he is not sure that these 'PageLines Meta Settings' are stored in post meta but that would make sense according to him. He asks if the Pagelines dev team will be interested to support this feature in the future.
       
      I'm also wondering if you will consider adding Polylang translation support for manually editable strings like the 'Read more…' strings in Pagelines Settings.
       
      Well that's of course up to you but I thought to let you know to be able to take this into consideration. I also post this for other users in case they experience the same kind of trouble and are looking for an answer.
       
      Best regards,
      Jan Peeters
    • bankrollbuilder
      By bankrollbuilder
      I used a custom hook to put a banner ad in my header. It works but its not in the right position. it is centered and above my logo and I would like to float it to the right of my logo in the header. heres the link: http://shaboopie.com/shaboopie-wp/free-logos-pg1/

      thanks.

      Dan B.
    • starlit
      By starlit
      Can one have two hero sections on one page?

      I want a landing page which leads/advertises two subpages.

      Or is there another option?

      Please help.

      THANK YOU
    • hutruk
      By hutruk
      Hi!

      I am using the shortcodes for tabs, as described in the documentation.

      When I insert the following code:


      [pl_tabs][pl_tabtitlesection type="tabs"] [pl_tabtitle number="1"]Title 1[/pl_tabtitle] [pl_tabtitle number="2"]Title 2[/pl_tabtitle] [/pl_tabtitlesection] [pl_tabcontentsection] [pl_tabcontent active="yes" number="1"] Lorem ipsum dolor sit amet, consectetur adipiscing elit [/pl_tabcontent] [pl_tabcontent number="2"] Lorem ipsum dolor sit amet, consectetur adipiscing elit [/pl_tabcontent] [/pl_tabcontentsection] [/pl_tabs]

      I get a strange output (in the attachment).

      Any ideas?

      Thanks in advance!

    • MooiWeb
      By MooiWeb
      Hello,

      I would like to align my qtranslate with my breadcrumb so that the flags are on the same hight.
      I'm aware of putting a code in the custom css and tryed severall codes from your site but for now, no succes

      The site i'm working on is http://nieuw.vazdias.nl

      Thx,
      Edwin



×