Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 2 of 2

Thread: Get/Remove Estimate Buttons CSS Define

  1. #1
    OMS is offline Junior Member
    Join Date
    Sep 2007
    Posts
    11

    Default Get/Remove Estimate Buttons CSS Define

    I have updated all my buttons via css, howver I cannot find what controls the "Get Estimates" and "Remove Estimate" button to control them via css.

    Anyone been able to do this?

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    I believe this was no existing css class defined for those buttons yet. You can do the following in Shoppingcart.aspx file:

    from:
    Code:
    <asp:Button ID="btnRemoveEstimator" runat="server" OnClick="btnRemoveEstimator_Click" Text="<%$ Tokens:StringResource,checkoutshipping.estimator.control.remove %>" Visible="false" /></td>
    to:
    Code:
    <asp:Button ID="btnRemoveEstimator" CssClass="EstimateButton"  runat="server" OnClick="btnRemoveEstimator_Click" Text="<%$ Tokens:StringResource,checkoutshipping.estimator.control.remove %>" Visible="false" /></td>
    then go to style.css and add 'EstimateButton' class. Do the same in <asp:Button ID="btnRequestEstimates" ..>