Manufacturer Template - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

Manufacturer Template

P

Pomaret

Template 4 years ago

I work with the Manufacturer template. I need to modify the contact page. I need to remove the image on the right. Which file should be modified. Thank you for your help

0
5 Answers
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #10978

Hello Pomaret

Please share a screenshot of your issue to understand it better.

Best regards

0
P
Pomaret
Accepted Answer
4 years ago #11006

here are the screenshots https://www.pominfo.fr/images/image1.jpg

https://www.pominfo.fr/images/image2.jpg

I want to remove the red zone and centre the module in the page

Best regards

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #11129

Please go to Extensions -> Modules and turn off Login Left module. Screenshot at Mar 19 15-44-38.png

Use this CSS to Template Options -> Custom Code -> Custom CSS

@media only screen and (max-width: 2560px) {
  .view-login #sp-component, .view-registration #sp-component{
    position: relative;
    left: 30%;
  }
}
@media only screen and (max-width: 1440px) {
  .view-login #sp-component, .view-registration #sp-component{
    position: relative;
    left: 20%;
  }
}
@media only screen and (max-width: 425px) {
  .view-login #sp-component, .view-registration #sp-component{
    position: absolute;
    left: 0%;
  }
}
0
P
Pomaret
Accepted Answer
4 years ago #11139

great, thank you very much

0
Ofi Khan
Ofi Khan
Accepted Answer
Support Agent 4 years ago #11254

You are welcome

0