Hello,
i just noticed on my mobile, that the guestbook (on my website) is not responsive, or at least not responsive enough.
I am using Helix Ultimate template.
See the https://imgur.com/Y0rlC1i
Can someone help me with this?
Regards, Peter
Responsive?
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Responsive?
Hi, which version of Phoca Guestbook and Joomla do you use?
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Member
- Posts: 23
- Joined: 15 Nov 2009, 22:29
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Responsive?
Hi, the possible way is to write own CSS for mobile view:
e.g. :
Remove the margin left for controls:
and add display block for control labels:
So, for example, adding this code to your own custom.css or user.css:
Jan
e.g. :
Code: Select all
@media (max-width:768px) {
...
}
Code: Select all
.form-horizontal .controls {
/* margin-left: 220px; */
margin-left: 0;
}
Code: Select all
.form-horizontal .control-label {
/* float: left; */
float: none;
display: block;
}
Code: Select all
@media (max-width:768px) {
#phocaguestbook .form-horizontal .controls {
margin-left: 0;
}
#phocaguestbook .form-horizontal .control-label {
float: none;
display: block;
}
}
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Member
- Posts: 23
- Joined: 15 Nov 2009, 22:29
Re: Responsive?
Hi Jan,
working perfectly. Thank you so much!!!
Regards, Peter
working perfectly. Thank you so much!!!
Regards, Peter
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact: