Tom Wilson Posted April 14, 2019 Share Posted April 14, 2019 (edited) Hello, I am having a few issues with my domain page, I want to remove: So in custom.css I put: .tld-filters { display: none; } But it still shows. Any help will be appreciated! Edited April 14, 2019 by Tom Wilson 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 14, 2019 Share Posted April 14, 2019 23 minutes ago, Tom Wilson said: But it still shows. it would be... .tld-filters {display: none !important;} ... but you'd still be left with the Browse extensions by category text... so you'd have to use a Language Override to replace that string... though you'd then be left with an empty space, so it might just be easier to remove everything by editing the template. 🙂 23 minutes ago, Tom Wilson said: Then, I have `.co.uk`, `.com` and `.org` showing as a spotlight domain, but it shows this: custom theme or clean version of Standard_cart ? 23 minutes ago, Tom Wilson said: As you can see, pricing is shown as n/a, and .org does not show. there is no default logo image for .org, so you will have to add it yourself. https://docs.whmcs.com/Domain_Pricing_Matrix#Adding_Additional_Logos 0 Quote Link to comment Share on other sites More sharing options...
Tom Wilson Posted April 14, 2019 Author Share Posted April 14, 2019 1 hour ago, brian! said: it would be... .tld-filters {display: none !important;} ... but you'd still be left with the Browse extensions by category text... so you'd have to use a Language Override to replace that string... though you'd then be left with an empty space, so it might just be easier to remove everything by editing the template. 🙂 custom theme or clean version of Standard_cart ? there is no default logo image for .org, so you will have to add it yourself. https://docs.whmcs.com/Domain_Pricing_Matrix#Adding_Additional_Logos Thanks! How would I edit the color of the price part? Not sure what to put in custom.css exactly. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 15, 2019 Share Posted April 15, 2019 21 hours ago, Tom Wilson said: Thanks! How would I edit the color of the price part? Not sure what to put in custom.css exactly. .featured-tld .price.org { background-color: #78AB30; color: #fff; } .featured-tld .price.orguk { background-color: #3AA140; color: #fff; } 0 Quote Link to comment Share on other sites More sharing options...
Tom Wilson Posted April 17, 2019 Author Share Posted April 17, 2019 On 15/04/2019 at 12:02 PM, brian! said: .featured-tld .price.org { background-color: #78AB30; color: #fff; } .featured-tld .price.orguk { background-color: #3AA140; color: #fff; } and text? p { color: #ffffff; } does not work 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted April 17, 2019 Share Posted April 17, 2019 5 hours ago, Tom Wilson said: does not work it does for me in Six by adding it to custom.css - I double-checked the code before posting... what are you seeing on your site ?? 0 Quote Link to comment Share on other sites More sharing options...
Tom Wilson Posted May 6, 2019 Author Share Posted May 6, 2019 On 17/04/2019 at 11:11 AM, brian! said: it does for me in Six by adding it to custom.css - I double-checked the code before posting... what are you seeing on your site ?? Hi .featured-tld .price.io { background-color: #3AA140; color: #3aa140; p { color: #ffffff; }; } and I see: 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted May 19, 2019 Share Posted May 19, 2019 Hi Tom, that CSS code is wrong - specifically adding the p (it's unnecessary)... .featured-tld .price.io { background-color: #6AAF07; color: #fff; } "background color" is the colour of the lower bar (in this case, a shade of green); "color" is the font colour used to display the price - in this case, it's white as we're using the abbreviated #fff. ... but we could make it black by using color: #000; in the css if we wanted to. 🙂 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.