- Posts: 14116
- Thank you received: 1639
Troubleshoot with Joomla Login page not responsiv
-
ivan.milic
Support Staff - Moderator
Less
More
9 years 7 months ago #45257
by ivan.milic
Replied by ivan.milic on topic Troubleshoot with Joomla Login page not responsiv
Put this in template_css.css like last one
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
so in @media tag where max width is 475px, you can put it in same one.
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
so in @media tag where max width is 475px, you can put it in same one.
Please Log in to join the conversation.
-
miq
Inactive member - Topic Author
- Member
Less
More
- Posts: 82
- Thank you received: 0
9 years 7 months ago #45258
by miq
Replied by miq on topic Troubleshoot with Joomla Login page not responsiv
This is the previous one
@media (max-width: 475px) {
.control-group .controls input{
max-width: 50px;
}
}
this is later
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
How can I write both in one or should be seperate?
@media (max-width: 475px) {
.control-group .controls input{
max-width: 50px;
}
}
this is later
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
How can I write both in one or should be seperate?
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
9 years 7 months ago #45259
by ivan.milic
Replied by ivan.milic on topic Troubleshoot with Joomla Login page not responsiv
@media (max-width: 475px) {
.control-group .controls input{
max-width: 50px;
}
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
}
.control-group .controls input{
max-width: 50px;
}
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
}
Please Log in to join the conversation.
-
miq
Inactive member - Topic Author
- Member
Less
More
- Posts: 82
- Thank you received: 0
9 years 7 months ago #45260
by miq
Replied by miq on topic Troubleshoot with Joomla Login page not responsiv
Thanks. now it is working.
I want the login button on login page as small as the submit button on Forget password page after resizing the window to mobile view. How can I resize that login button on login page.
My second question is that where can I change the link on the logo of my website (top-left logo) from mysite.com/index.php to my site mysite.com
I want the login button on login page as small as the submit button on Forget password page after resizing the window to mobile view. How can I resize that login button on login page.
My second question is that where can I change the link on the logo of my website (top-left logo) from mysite.com/index.php to my site mysite.com
Please Log in to join the conversation.
-
ivan.milic
Support Staff - Moderator
Less
More
- Posts: 14116
- Thank you received: 1639
9 years 7 months ago #45261
by ivan.milic
Replied by ivan.milic on topic Troubleshoot with Joomla Login page not responsiv
Add this too
.controls .btn.btn-primary{
width: 70px;
font-size: 10px;
padding: 5px;
}
and for logo link in your template_folder\library\ find logo.php it's small file and there should be href for a tag. Edit it to what you want.
.controls .btn.btn-primary{
width: 70px;
font-size: 10px;
padding: 5px;
}
and for logo link in your template_folder\library\ find logo.php it's small file and there should be href for a tag. Edit it to what you want.
Please Log in to join the conversation.
-
miq
Inactive member - Topic Author
- Member
Less
More
- Posts: 82
- Thank you received: 0
9 years 7 months ago #45262
by miq
Replied by miq on topic Troubleshoot with Joomla Login page not responsiv
The new code will look like?
@media (max-width: 475px) {
.control-group .controls input{
max-width: 50px;
}
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
.controls .btn.btn-primary{
width: 70px;
font-size: 10px;
padding: 5px;
}
}
Is it right
@media (max-width: 475px) {
.control-group .controls input{
max-width: 50px;
}
.controls .btn.btn-primary.validate{
width: 70px;
font-size: 10px;
padding: 5px;
}
.controls .btn.btn-primary{
width: 70px;
font-size: 10px;
padding: 5px;
}
}
Is it right
Please Log in to join the conversation.
Time to create page: 0.099 seconds