i need help for Phoca Guestbook

Phoca Guestbook - creating guestbooks in Joomla! CMS
DarinL
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 01 Dec 2009, 15:04

i need help for Phoca Guestbook

Post by DarinL »

Thank you for great work

please help me how can change Phoca Guestbook to RTL for arabic website

Kind regards
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48726
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: i need help for Phoca Guestbook

Post by Jan »

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
If you find Phoca extensions useful, please support the project
DarinL
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 01 Dec 2009, 15:04

Re: i need help for Phoca Guestbook

Post by DarinL »

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
Last edited by DarinL on 09 Dec 2009, 19:31, edited 1 time in total.
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 48726
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: i need help for Phoca Guestbook

Post by Jan »

Hi, sorry I don't understand what you mean with reght or reghit?
If you find Phoca extensions useful, please support the project
DarinL
Phoca Newbie
Phoca Newbie
Posts: 3
Joined: 01 Dec 2009, 15:04

Re: i need help for Phoca Guestbook

Post by DarinL »

i so sorry i mean right !!!

i want all text go right

please help
thijeleo
Phoca Member
Phoca Member
Posts: 35
Joined: 05 Jan 2008, 21:24
Location: Netherlands
Contact:

Re: i need help for Phoca Guestbook

Post by thijeleo »

You will have to edit /components/com_phocaguestbook/assets/phocaguestbook.css

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;}
You should change this into:

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;}
In other words: ad the code direction:rtl; to the CSS at the body and the table tr td a img line.
Post Reply