Membership is FREE – with unlimited access to all features, tools, and discussions. Premium accounts get benefits like banner ads and newsletter exposure. ✅ Signature links are now free for all. Share your own thoughts and experience, accounts may be terminated for violations.
  • Welcome to AcornDomains.co.uk, a friendly community for UK domain investors, developers and anyone interested in domain names.

    Whether you're looking to buy or sell domains, learn more about the UK domain market, get feedback on your names, or simply chat with other domainers, you're in the right place. AcornDomains has been bringing together people from across the UK domain industry for many years, from complete beginners to experienced investors.

    Have a look around, join the discussions and, if you haven't already, create a free account and introduce yourself.

CSS issue

Joined
Jan 11, 2007
Posts
5,064
Reaction score
106
I am helping a family member with their new website and having an issue with the following:

www. chestnutcaterers .co.uk/new/business-lunches/

If the item description is over two lines then the dashed line appears under the price not running up to it.

Any ideas how to fix this?
 
Could put max-width to 100% in the following so that the line follows the end of the block like its suppose to using the pseudo element :

.gk-menu-container dd small {
max-width: 100%;
}

The only trouble with that is it then looks like its an underline on things like the Savoury Croissant description......but imo that looks better than what you currently have.
 
Scrap that, doing the above messes up things lower down slightly , although you could break those two sections with slightly different max-widths
 
Top Bottom