Post by Taurinense » Thu Feb 13, 2020 6:06 pm

Hi Guys! I have a problem, for no reason I found this error. The footer and the content bottom are full width! But only on home page.
Would any of you know how to help me? I can't get out of it!!

The correct footer is like this page http://turbowaterstyle.altervista.org/p ... ry&path=20
The error is visible on home page http://turbowaterstyle.altervista.org/public_html


Thank you so much!!!!

New member

Posts

Joined
Tue May 28, 2019 11:21 pm

Post by IP_CAM » Thu Feb 13, 2020 8:05 pm

It's most likely a missing </div> , at the end of the Theme File(s), where the footer shows that effect.
Ernie

My Github OC Site: https://github.com/IP-CAM
5'600 + FREE OC Extensions, on the World's largest private Github OC Repository Archive Site.


User avatar
Legendary Member

Posts

Joined
Tue Mar 04, 2014 1:37 am
Location - Switzerland

Post by Taurinense » Thu Feb 13, 2020 10:15 pm

Thank you for your reply!! In your opinion, at what point of the theme could it be, since it appears only at the homepage? Thank you!!

New member

Posts

Joined
Tue May 28, 2019 11:21 pm

Post by letxobnav » Thu Feb 13, 2020 11:08 pm

those are different footers

Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces

“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.


User avatar
Expert Member

Posts

Joined
Fri Aug 18, 2017 4:35 pm
Location - Taiwan

Post by Taurinense » Thu Feb 13, 2020 11:16 pm

No, sorry ... I was trying to figure out where the problem was.
Now I have inserted the same footer, but it continues to be different only in the home :(

New member

Posts

Joined
Tue May 28, 2019 11:21 pm

Post by cyclops12 » Fri Feb 14, 2020 1:53 am

Maybe you are using a different layout for the home page??

Expert Member

Posts

Joined
Sun Sep 27, 2015 1:10 am

Post by letxobnav » Fri Feb 14, 2020 8:46 am

maybe it is this?

Code: Select all

<script type="text/javascript">
     function force_full_width_57099900() {
          var p = $(".standard-body .full-width .advanced-grid-57099900");
          
                    if(p.size() > 0) {
               p.width($('body').width());
               p.css("left", "0px");
               var position = p.offset();
               p.css("left", "-" + position.left + "px");
               p.find(".container").css("padding-left", position.left);
               p.find(".container").css("padding-right", position.left);
               
          }
                    
          var s = $(".standard-body .fixed .advanced-grid-57099900");
                    if(s.size() > 0) {
               s.width($('.standard-body .fixed .pattern').width());
               s.css("left", "0px");
               var position = s.offset();
               var position2 = $('.standard-body .fixed .pattern').offset();
               var position3 = position.left-position2.left;
               s.css("left", "-" + position3 + "px");
               s.find(".container").css("padding-left", position3);
               s.find(".container").css("padding-right", position3);
          }
                    
          var c = $(".fixed-body .advanced-grid-57099900");
                    if(c.size() > 0) {
               c.width($('.fixed-body .main-fixed').width());
               c.css("left", "0px");
               var position = c.offset();
               var position2 = $('.fixed-body .main-fixed').offset();
               var position3 = position.left-position2.left;
               c.css("left", "-" + position3 + "px");
               c.find(".container").css("padding-left", position3);
               c.find(".container").css("padding-right", position3);
          }
               }
     
     force_full_width_57099900();
     
     $(window).resize(function() {
          force_full_width_57099900();
     });
</script>

Crystal Light Centrum Taiwan
Extensions: MailQueue | SUKHR | VBoces

“Data security is paramount at [...], and we are committed to protecting the privacy of anyone who is associated with our [...]. We’ve made a lot of improvements and will continue to make them.”
When you know your life savings are gone.


User avatar
Expert Member

Posts

Joined
Fri Aug 18, 2017 4:35 pm
Location - Taiwan

Post by paulfeakins » Fri Feb 14, 2020 10:53 pm

IP_CAM wrote:
Thu Feb 13, 2020 8:05 pm
It's most likely a missing </div> , at the end of the Theme File(s), where the footer shows that effect.
Ernie
I think it's 2 missing opening <div> tags as you can see in Firefox source view these 2 closing </div>s are not matched:
http://screenshots.antropy.co.uk/143b8979.jpg

UK OpenCart Hosting | OpenCart Audits | OpenCart Support - please email info@antropy.co.uk


User avatar
Legendary Member

Posts

Joined
Mon Aug 22, 2011 11:01 pm
Location - London Gatwick, United Kingdom

Post by Jaesin » Sat Feb 15, 2020 2:42 am

Looks like you are using Journal, or a similar theme..... I had the same problem recently except it was on a single category page.

What I found was that there was a html <br> in my product description/name causing this issue.
Start with removing each module on your home page one by one, and when the footer corrects itself, you found the offending module.
Then have a look at the items displayed in that moduel and review the descriptions in HTML format and look for any unesseary breaks (or other html elements).
Remove it and try the module again.

Hope this helps...

New member

Posts

Joined
Wed Aug 23, 2017 11:31 pm

Post by Taurinense » Thu Feb 20, 2020 5:37 pm

paulfeakins wrote:
Fri Feb 14, 2020 10:53 pm
IP_CAM wrote:
Thu Feb 13, 2020 8:05 pm
It's most likely a missing </div> , at the end of the Theme File(s), where the footer shows that effect.
Ernie
I think it's 2 missing opening <div> tags as you can see in Firefox source view these 2 closing </div>s are not matched:
http://screenshots.antropy.co.uk/143b8979.jpg

THANK YOU!!!!!!!! I SOLVED!!!!! :ok: :yahoo:

New member

Posts

Joined
Tue May 28, 2019 11:21 pm

Post by paulfeakins » Thu Feb 20, 2020 5:45 pm

Taurinense wrote:
Thu Feb 20, 2020 5:37 pm
paulfeakins wrote:
Fri Feb 14, 2020 10:53 pm
IP_CAM wrote:
Thu Feb 13, 2020 8:05 pm
It's most likely a missing </div> , at the end of the Theme File(s), where the footer shows that effect.
Ernie
I think it's 2 missing opening <div> tags as you can see in Firefox source view these 2 closing </div>s are not matched:
http://screenshots.antropy.co.uk/143b8979.jpg

THANK YOU!!!!!!!! I SOLVED!!!!! :ok: :yahoo:
Image

UK OpenCart Hosting | OpenCart Audits | OpenCart Support - please email info@antropy.co.uk


User avatar
Legendary Member

Posts

Joined
Mon Aug 22, 2011 11:01 pm
Location - London Gatwick, United Kingdom
Who is online

Users browsing this forum: No registered users and 7 guests