Article Box Full Width - Question | JoomShaper

Article Box Full Width

V

vbangaru

Template 1 year ago

https://prnt.sc/vG0kSq_NaNUi

Using Educon template. I want article box to be full width as shown in screenshot. Pls help.

0
12 Answers
V
vbangaru
Accepted Answer
1 year ago #108390

It worked. Thank you very much. I tried to put both the code there but top space did not reduce. https://prnt.sc/88WreAN0S95X

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108360

Hi,

  1. please share link to that view (subpage)
  2. is this a single article view or blog view ?
0
V
vbangaru
Accepted Answer
1 year ago #108371
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108382

Thanks for the link.

In Template settings > Custom Code > Custom CSS and please paste:

.view-article #sp-main-body, 
.view-category #sp-main-body { padding: 50px 0; }

.view-article article.item {width: 100%;}
.view-article article.item {padding: 25px 25px 10px 15px;}

It will help to increase article width area a lot.

AFTER using CSS

info_656_2023.jpg

To reduce top & left space inside article you can also use that

article.item .content-wrap {
  margin-top: 30px; padding-left: 25px;}
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108409

Remove '''

from CSS syntax !! info_658_2023.jpg

0
V
vbangaru
Accepted Answer
1 year ago #108536

Thank you very much for your timely support.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108541

You're welcome.

I saw that now looks OK :)

0
V
vbangaru
Accepted Answer
1 year ago #108693

https://prnt.sc/F-bDfzmL5rFl

https://prnt.sc/a1jOZPoUfsM0

One more help. For article link there is gap at top and left for module position menu but for pagebuilder page link there is no gap. Where can I adjust those settings? I want in similar way for both. Thanks in advance.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108702

It's becuase this is SPPB Page view, that by default doesn't have top space for component area.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108703

Solution would be to add margin directly for left module ONLY on SPPB Page view. Example values:

#sp-left .sp-module:first-child {
  margin-top: 50px !important; margin-left: 20px; }

Remember no '''' this time.

0
V
vbangaru
Accepted Answer
1 year ago #108711

Tried but unsuccessful. Could not understand where to insert that code. Tried at some places but not able to do it being a novice. Anyhow it's not a big deal. Thank you for your support.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #108712

Probably in that same place like last time.

Template settings > Custom Code > Custom CSS

0