kiwi Posted August 2, 2021 Share Posted August 2, 2021 Fantastic worked a treat. much appreciated. Quote Link to comment Share on other sites More sharing options...
paladin Posted August 3, 2021 Share Posted August 3, 2021 Hi, Since my CC6 is modded in several ways, is there a way to test this on my site shortly live before buying it? thnx Quote Link to comment Share on other sites More sharing options...
NiteFox Posted August 4, 2021 Share Posted August 4, 2021 16 hours ago, paladin said: Hi, Since my CC6 is modded in several ways, is there a way to test this on my site shortly live before buying it? thnx Hi, Unfortunately I don't offer trials of my skins. Thanks Quote Link to comment Share on other sites More sharing options...
kiwi Posted August 6, 2021 Share Posted August 6, 2021 Me again! I need to make the category Images match the page width, if you look at the Steel Post Caps bar in blue you can see the photo doesn't match the width, this test image size is 850px X 450px which is spot on when used on the document pages, see here Your help is much appreciated. Quote Link to comment Share on other sites More sharing options...
bsmither Posted August 6, 2021 Share Posted August 6, 2021 (edited) In the skin's config.xml, find the <image reference="category">. It is set for 800 pixels on the longest dimension. Change this to 900. It will auto-scale down to fit the container (which is 848 px wide). Next, you will need to find the CSS rule (I do not know where it would be.): .cat-hdr-img img { margin: 0px auto 5px; } Change to: .cat-hdr-img img { margin: 0 0 5px; } This CSS change will remove the margin that the browser adds to either side of the image, in equal part, to center the image in the slightly wider container. Be sure to clear Cubecart's cache. Edited August 6, 2021 by bsmither 1 1 Quote Link to comment Share on other sites More sharing options...
kiwi Posted August 8, 2021 Share Posted August 8, 2021 On 8/6/2021 at 6:55 PM, bsmither said: You are a genius, It worked thanks Note for others, the folder location is /skins/amzin/css and the file to edit is style.css Quote Link to comment Share on other sites More sharing options...
kiwi Posted August 8, 2021 Share Posted August 8, 2021 Could you tell me how to add a favicon please. Quote Link to comment Share on other sites More sharing options...
bsmither Posted August 8, 2021 Share Posted August 8, 2021 Determine if the following statement already exists in the templates 'main.php' and 'main.checkout.php': <link href="{$ROOT_PATH}favicon.ico" rel="shortcut icon" type="image/x-icon"> If it is not there, add it just before the </head> tag. Next, acquire a square image you want to use. Upload it to a free online ICO file maker, such as: https://www.icoconverter.com/ Place the .ico file in CubeCart's main folder. 1 Quote Link to comment Share on other sites More sharing options...
NiteFox Posted August 8, 2021 Share Posted August 8, 2021 Cheers for helping out @bsmither Quote Link to comment Share on other sites More sharing options...
kiwi Posted August 9, 2021 Share Posted August 9, 2021 (edited) 17 hours ago, bsmither said: Determine if the following statement already exists in the templates 'main.php' and 'main.checkout.php': <link href="{$ROOT_PATH}favicon.ico" rel="shortcut icon" type="image/x-icon"> If it is not there, add it just before the </head> tag. Next, acquire a square image you want to use. Upload it to a free online ICO file maker, such as: https://www.icoconverter.com/ Place the .ico file in CubeCart's main folder. That didn't work for some reason, I used the icon converter website to generate the favicon image and then placed it in the root directory, both mentioned files had the code in it. I've cleared the catch for the website and on my computer. Any ideas? I converted a image size of 256 pixels with the following setting selected. Edited August 9, 2021 by kiwi Quote Link to comment Share on other sites More sharing options...
bsmither Posted August 9, 2021 Share Posted August 9, 2021 In my Firefox, I see the .ico image on the browser tab, but only has three "pages", 256, 128, and 64 pixels square. Quote Link to comment Share on other sites More sharing options...
kiwi Posted August 10, 2021 Share Posted August 10, 2021 11 hours ago, bsmither said: In my Firefox, I see the .ico image on the browser tab, but only has three "pages", 256, 128, and 64 pixels square. Found a fantastic tool https://realfavicongenerator.net/ it generates all these favicons, its easy to use. <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> <link rel="manifest" href="/site.webmanifest"> <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5"> <meta name="msapplication-TileColor" content="#da532c"> <meta name="theme-color" content="#ffffff"> Quote Link to comment Share on other sites More sharing options...
kaastrup Posted November 23, 2022 Share Posted November 23, 2022 (edited) My hosting partner is updating the environment to PHP 8.xx Anyone knows if this skin is working on PHP 8 ???? Edited November 23, 2022 by kaastrup Quote Link to comment Share on other sites More sharing options...
bsmither Posted January 5 Share Posted January 5 For version 1.05, there is a bug in the template box.template.php, near line 17: From: {if count($POPULAR > 1)} To: {if count($POPULAR) gt 1} 1 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.