I made a one-page website with JA Builder, but when I add other pages to JA Builder, none of them open or edit.
Only homepage works
JA BUILDER + Joomla 5.1.1 Only homepage works
can anyone help me?
Hi
I just tested JA Builder + J!5.1.1 but it worked normally, could you share the super admin account of your site so I can check? as the provided account doesn't work now.
Regards
It still doesn't work, could you login with this account?
- Edited
It seems that you enable the page heading for this page, JA Builder has style for this page heading so you see that white bar.
You can access menu item of this page >> Page Display tab and set Show Page Heading
option to Hide
- Edited
can you help me, how to reduce the distance between lines ? I mean in text lines
Could you share the URL and screenshot highlighting the text you want to reduce the space? I will check and help you out.
Hi
The provided admin account doesn't work, could you check again?
I added this custom CSS:
.jub-element.jub-element-text.text-justify.quote {
line-height: 15px;
}
Kindly check.
- Edited
saguaros
Thanks for the help.
I thought that knowing the code, I could change these parameters myself.
But I couldn’t do the same on the Home page.
Please do the same on the Home page.
- and also make the line:
"Keep an eye out for new content — check back often! "
when this line opens on the phone it turns into 2 lines very wide apart.
- Edited
w11w12 I have updated the code to ensure it functions correctly on the homepage as well.
Regarding the quote on the mobile view, the available space is insufficient to display the text on a single line. To address this, I have slightly reduced the font size:
.f-nothing-you-could-do {
line-height: 12px;
}
@media (max-width: 576px){
.jub-block blockquote {
padding: 0 0 0 30px;
font-size: 18px;
}
}
Please review the changes.
Last time you did everything well on the ARTICLE page
And now everything has been canceled both on the ARTICLE page and on the MAIN pages
I'm just more interested in the line spacing for the mobile version.
Please reduce the line spacing in this phrase marked with a red square on both pages
w11w12 Hi
On mobile view, I think the space is not enough, you can reduce the font size and the padding for this highlight section:
@media (max-width: 576px){
.jub-block.content-4 .content .highlight-box .box-ct {
padding: 12px 24px;
}
.f-nothing-you-could-do.fs-sm {
font-size: 12px;
}
}
and customize as you wish.