Thank you for great work
please help me how can change Phoca Guestbook to RTL for arabic website
Kind regards
i need help for Phoca Guestbook
- Jan
- Phoca Hero
- Posts: 48726
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: i need help for Phoca Guestbook
Hi, I didn't try it yet and don't have any experiences, maybe some float needs to be changed, e.g. from left to right. Please let me know the site where you have displayed the guestbook, so I can take a look at it.
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 3
- Joined: 01 Dec 2009, 15:04
Re: i need help for Phoca Guestbook
Thank you so much for replay me
i want only text go right i mean this this
This text go right and input go left
Title:
Name:
E-mail:
Content:
Image Verification:
dear Jan please help me in which page must edit
check my guestbook in my seite http://www.vokworld.com/news/home/deftar.html
i awaiting you reply
kind regards
i want only text go right i mean this this
This text go right and input go left
Title:
Name:
E-mail:
Content:
Image Verification:
dear Jan please help me in which page must edit
check my guestbook in my seite http://www.vokworld.com/news/home/deftar.html
i awaiting you reply
kind regards
Last edited by DarinL on 09 Dec 2009, 19:31, edited 1 time in total.
- Jan
- Phoca Hero
- Posts: 48726
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: i need help for Phoca Guestbook
Hi, sorry I don't understand what you mean with reght or reghit?
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 3
- Joined: 01 Dec 2009, 15:04
Re: i need help for Phoca Guestbook
i so sorry i mean right !!!
i want all text go right
please help
i want all text go right
please help
-
- Phoca Member
- Posts: 35
- Joined: 05 Jan 2008, 21:24
- Location: Netherlands
- Contact:
Re: i need help for Phoca Guestbook
You will have to edit /components/com_phocaguestbook/assets/phocaguestbook.css
This CSS normally looks like:
You should change this into:
In other words: ad the code direction:rtl; to the CSS at the body and the table tr td a img line.
This CSS normally looks like:
Code: Select all
/*phocaguestbook*/
body{margin:0;padding:0;}
a img {border:0px;padding:0;margin:0;}
table tr td a img {border:0px;}
/*panels*/
#phocaguestbook .jpane-toggler span { background: transparent url(images/icon-message.png) 5px 50% no-repeat; padding-left: 24px;cursor:pointer;text-decoration:underline;}
#phocaguestbook .jpane-toggler-down span { background: transparent url(images/icon-message.png) 5px 50% no-repeat; padding-left: 24px;cursor:pointer;text-decoration:underline;}
#phocaguestbook-jpane-none { display:none;backgroud:#fff100;}
#phocaguestbook #mce_editor_0_toolbar {position: static !important;}
Code: Select all
/*phocaguestbook*/
body{margin:0;padding:0;direction:rtl;}
a img {border:0px;padding:0;margin:0;}
table tr td a img {border:0px;direction:rtl;}
/*panels*/
#phocaguestbook .jpane-toggler span { background: transparent url(images/icon-message.png) 5px 50% no-repeat; padding-left: 24px;cursor:pointer;text-decoration:underline;}
#phocaguestbook .jpane-toggler-down span { background: transparent url(images/icon-message.png) 5px 50% no-repeat; padding-left: 24px;cursor:pointer;text-decoration:underline;}
#phocaguestbook-jpane-none { display:none;backgroud:#fff100;}
#phocaguestbook #mce_editor_0_toolbar {position: static !important;}