Position "Left" - Question | JoomShaper

Position "Left"

GD

Georg Doll

Helix Framework 1 year ago

The position "left" is interpreted differently. If an article was written with the PageBuilder, then "left" is on the left edge of the screen. However, if the article was written with the system editor (TinyMCE), "left" is on the left margin within the "content" position. Is it possible to set somewhere that the "left" position of the framework/template (left edge of the screen) is always used? System: Joomla 4.4.5, PageBuilder Pro, Template Language School

Examples: written with TinyMCE: https://www.kepler-privatschulen.de/index.php/transparenz

written with PageBuider: https://www.kepler-privatschulen.de/index.php/jamf-parent

0
7 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #158358

Hi

Thanks for contacting us. Use this CSS in your custom.css file

#sp-main-body {
    padding: 50px 0 !important;
}

-Regards.

0
GD
Georg Doll
Accepted Answer
1 year ago #158362

Thanks for the quick support. I created a custom.css file in /templates/shaper_languageschool/css and copied this code into it. It makes no difference in how the two pages above are displayed.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #158370

Is this ok if I set it like this? Then just use this CSS

#sp-main-body {
    padding: 50px 0 !important;
         margin-left: 40px;
}
0
GD
Georg Doll
Accepted Answer
1 year ago #158376

Hmm... I think, my description was wrong. After looking clöser to both expamples, the real problem is: Written with Pagebuilder: 100 % width is used Written with TinyMCE: Only about 1120 px are used. So: I would need some code to tell the system allways use 100 %.

To make the problem visible - independent from real screen size, I made screenshots: made with PageBuilder: https://kepler-privatschulen.de/show/position-left-menu-at-pb-site.jpg made with TinyMCE: https://kepler-privatschulen.de/show/position-left-menue-at-joomla-article.jpg

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #158468

Try this CSS

.com-sppagebuilder #sp-main-body {
    width: 1120px !important;
}
0
GD
Georg Doll
Accepted Answer
1 year ago #158482

it throws pagebuilder sites complete to the left site but leaves tinyMCE sites untouched. Is there a way bring it back to center position?

Made with TinyMCE: https://kepler-privatschulen.de/show/system-new.png Made with PageBuilder: https://kepler-privatschulen.de/show/pagebuilder-new.png

I already tried this modifications - they are displayed in the same way ...

.com-sppagebuilder #sp-main-body { display: flex; width: 1120px !important; justify-content: center; }

and

.com-sppagebuilder #sp-main-body { display: flex !important; width: 1120px !important; justify-content: center !important; }

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 1 year ago #158625

Sorry its not possible and there are too many customization which is beyond our support policy. Sorry for this inconvenience. If possible contact with any developer.

0