diff --git a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml
index 6b7432b8b2..6f31fc6ed2 100644
--- a/interface/resources/qml/hifi/commerce/checkout/Checkout.qml
+++ b/interface/resources/qml/hifi/commerce/checkout/Checkout.qml
@@ -410,7 +410,8 @@ Rectangle {
Rectangle {
id: buyTextContainer;
visible: buyText.text !== "";
- anchors.top: parent.top;
+ anchors.top: cancelPurchaseButton.bottom;
+ anchors.topMargin: 16;
anchors.left: parent.left;
anchors.right: parent.right;
height: buyText.height + 30;
@@ -465,8 +466,8 @@ Rectangle {
enabled: (root.balanceAfterPurchase >= 0 && purchasesReceived && balanceReceived) || !itemIsJson;
color: hifi.buttons.blue;
colorScheme: hifi.colorSchemes.light;
- anchors.top: buyTextContainer.visible ? buyTextContainer.bottom : checkoutActionButtonsContainer.top;
- anchors.topMargin: buyTextContainer.visible ? 12 : 16;
+ anchors.top: checkoutActionButtonsContainer.top;
+ anchors.topMargin: 16;
height: 40;
anchors.left: parent.left;
anchors.right: parent.right;
@@ -926,11 +927,11 @@ Rectangle {
buyText.text = "";
}
} else {
- buyText.text = "This free item will not be added to your Purchases. Non-entities can't yet be purchased for HFC.";
- buyTextContainer.color = "#FFD6AD";
- buyTextContainer.border.color = "#FAC07D";
- buyGlyph.text = hifi.glyphs.alert;
- buyGlyph.size = 46;
+ buyText.text = 'Note: This free item will not show up in "My Purchases". You can access it again later from the Marketplace.';
+ buyTextContainer.color = hifi.colors.white;
+ buyTextContainer.border.color = hifi.colors.white;
+ buyGlyph.text = "";
+ buyGlyph.size = 0;
}
}