Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

E-Commerce Modules /

Discuss about the various e-commerce modules available:
Ecommerce, SS Shop, SilverCart and SwipeStripe
Alternatively, have a look the shared mailinglist.

Moderators: martimiz, Nicolaas, Sean, Ed, frankmullenger, biapar, Willr, Ingo, Jedateach, swaiba

Terms and conditions error format


Go to End


3 Posts   1924 Views

Avatar
mschiefmaker

Community Member, 187 Posts

27 November 2009 at 6:59am

I am having problems formatting the t&c error message at the bottom of the order form (see attached). It overlays itself and the actual T&c message.

The code that display this is

<span class="message required">I agree to the terms and conditions stated on the <a href="terms-and-conditions" title="Read the shop terms and conditions for this site">terms and conditions</a> page is required</span>

Can anyone help on how to reformat it?

Thanks

Catherine

Attached Files
Avatar
Double-A-Ron

Community Member, 607 Posts

27 November 2009 at 9:02am

I had the exact same issue once. I ended up just using firebug to track down the CSS in question and change the font size.

Have you tried this?

Aaron

Avatar
mschiefmaker

Community Member, 187 Posts

28 November 2009 at 11:32am

thanks Aaron. I had tried this before but was picking up the wrong css entry. Tracking through Firebug solved this. Changed
.required {
margin: 40px;
padding: 0px 5px;
width: 92%;
color: #DC1313;
font-size: 11px;
}

and it solved ths issue.

Catherine