Problem With Displaying Columns On A Subpage In The Newsberg Template - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

Problem With Displaying Columns On A Subpage In The Newsberg Template

W

wmorkana

Template 3 years ago

Hi,

I have a problem with displaying columns on a subpage in the Newsberg template. In the settings, the page break into 3 columns 3 + 6 + 3 is marked.

Only the left (with modules) and middle (with articles) columns are correctly displayed, but the right column is displayed at the bottom - instead of on the right.

I've tried everything: I changed the division into columns and the same effect each time. What's interesting - when I call up the list of articles everything is fine. Three columns are displayed correctly next to each other.

0
8 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #55099

Hi,

Please use the following code in your custom CSS:

body.com-content.view-article #sp-main-body .container-inner {
    display: flex;
}
@media (min-width: 992px){
body.com-content.view-article #sp-component {
    width: 70%;
}
}

Hope this will solve the issue for you!

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #55044

Hi there!

Thanks for contacting us.

Would you please give me the link where you have this issue?

Best Regards

0
W
wmorkana
Accepted Answer
3 years ago #55228

After pasting the css code, the right column is displayed correctly, however, there is an error with the problem with scaling photos in articles on mobile devices

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #55272

Hi,

Sorry to hear that.

Please remove the previous code and use the following one instead:

@media (min-width: 992px){
body.com-content.view-article #sp-main-body .container-inner {
    display: flex;
}
body.com-content.view-article #sp-component {
    width: 70%;
}
}

It may resolve the issue I hope.

Do let me know if it helps!

Best Regards

0
W
wmorkana
Accepted Answer
3 years ago #55330

Thanks for your help, it works fine now.

I have one more question, how to enable the social media icon bar without the "Show author entries" column in articles

0
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #55477

Hi,

You will have that option within the details section of the blog tab in your Template Options. The following documentation link may help you:

https://www.joomshaper.com/documentation/helix-framework/helix-ultimate-2/blog#details

Best Regards

0