Skip to main content
CJDH
Known Participant
March 1, 2024
Question

View shopping cart link in banner

  • March 1, 2024
  • 5 replies
  • 534 views

I can't figure out how to position my account link and view shopping cart link up in the banner, right side. https://www.greenbeaks.com/shopping-test.html

Thanks for the help!

This topic is closed to new replies. Start a new post to keep the conversation going.

5 replies

Legend
March 1, 2024

Some updates to the current code are needed:

 

Complete revised code is below for you to copy and paste.

 

Notes of the major changes:

 

1) Include a row <div class="row> </div> as the child element of the 'container' <div>  to wrap ALL the content of the 'container' in (that's how Bootstrap works). Add to the row div - class="row justify-content-between align-items-center" 

 

2) Wrap your 'icons8-user-100(1).png' a tag and the form tag in a <div>. I've given it a class of 'loginBasket'. Also add the 'd-flex' class to the 'loginBasket' class. Delete the closing </a> tag which folllows the closing </form> tag and move it to close your 'gblogotrans.png' a tag.

 

3) Remove class="col-xl-1 offset-xl-10" from the form tag.

 

 

Complete revised code (updates shown in red):

NOTE: I have removed your business email address AND bn value from the form for 'security' and 'spam' prevention, you need to add those back in.

 

 

<div class="container">

 

<div class="row justify-content-between align-items-center">

 

<a href="index.html"><img src="images/logos/gblogotrans.png" alt="&copy; Copyright 2023 Twin Beaks© Aviary All Rights Reserved" width="225" height="73" class="img-fluid"></a>


<div class="loginBasket d-flex">

 

<a href="account.html"><img src="images/icons/icons8-user-100(1).png" alt="login" width="35" height="35"/></a>


<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal" class="col-xl-1 offset-xl-10"><input type="hidden" name="bn" value="XXXXXXXXXX" /><input type="hidden" name="cmd" value="_cart" /><input type="hidden" name="business" value="XXXXXXXXXX" /><input type="hidden" name="display" value="1" /><input type="image" src="images/icons/icons8-shopping-basket-100.png" alt="basket" width="32" height="32" border="0" name="submit" /></form></a>

 

</div>
<!-- end loginBasket -->

 

</div>
<!-- end row -->

 

</div>
<!-- end container -->

 

 

 

 

CJDH
CJDHAuthor
Known Participant
March 1, 2024

What a help! Thank you. The 'view shopping cart' is working now, but items aren't dropping into the cart. I've been working on this for hours... I'm stumped.

Legend
March 1, 2024
quote

The 'view shopping cart' is working now, but items aren't dropping into the cart. I've been working on this for hours... I'm stumped.


By @Haybound23605476

 

That's because you don't have the required Paypal hidden fields in your form/s, so nothing is getting through to the Paypal basket.

 

 

BenPleysier
Community Expert
Community Expert
March 1, 2024
Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
CJDH
CJDHAuthor
Known Participant
March 1, 2024

Thanks, Ben. I'm on my second time viewing these and still learning!