Link to home
Start Free TrialLog in
Avatar of Melody Scott
Melody ScottFlag for United States of America

asked on

Looks like I have two containers

http://dev2.magickitchen.com/menu/main_courses.html  please go there, add a product to the cart, then put in your zip code and checkout. That will take you yo the checkout page. It looks like photo1,  and I want it to look like photo2. It did, a while ago, but I must have overwritten something...

It looks to me as though I have two containers, but I can't track it down. Thanks for your help.

User generated image    User generated image
Avatar of Melody Scott
Melody Scott
Flag of United States of America image

ASKER

Catalog pages are broken, give me five minutes. Sorry.
OK, good to go, thanks. You can add an item to the cart and carry on as I've described above.
Avatar of Julian Hansen
Tried to help but I get a Fraud Protection page saying CC payments are not acceptable from my country - did not get to see the page in question.
Ah, darn - sorry, I can't fix that today. Maybe someone else can help?
I also tried to follow your steps to get to the "Checkout" purchaser , receiver page, although it did successfully accept my zip code (united states), however the addy for the checkout -
     https://dev2.magickitchen.com/cgi/cart.cgi
gives me an Error-Warning for improper security for the "https secure connection", as -
    "This Connection is Untrusted"
I got that too - that is because they are using a self created cert - I imagine until they go live. Just accept the security exception and it will let you through.
Yes, that's right, Julian, thanks!
well, despite the security crap , I looked at the page code, and you do have too many containers as first , at line 113 -
<form method=POST action='https://dev2.magickitchen.com/cgi/cart.cgi' name='bill' id='my_form'>
 <div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mainContentArea" style="background-color:#FFF;">
      <div class="row clearfix">
        <div class="col-md-12" style="text-align:center; font-weight:600; color:#e73800;">

Open in new window


and then again you have on line 124 -
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 mainContentArea" style="background-color:#FFF;">
      <div class="row clearfix">
        <div class="col-md-12" style="text-align:center; font-weight:600; color:#e73800;">

Open in new window


the <div> with the class of "mainContentArea" seems to be a repeat copy, and probably the "two containers" as you say. In my element inspector, it seems to add the extra left and right "dark border lines" that seem to be the difference in the two images you show.
although this has nothing to do with the question, there seems to be incorrect code at the start of page as -

<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>


any and all <meta > tags need to be BELOW the <head> tag, always
ASKER CERTIFIED SOLUTION
Avatar of Julian Hansen
Julian Hansen
Flag of South Africa image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi, I had solved it, but at the same time you added this, so you get the points. :) Thanks.