pauldixon999
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] Google Font IPhone IssueForum: Themes and Templates
In reply to: [Storefront] Storefront 2.0.6 zip file failed to installedHow are you trying to install it Samnexus?
Best wishes,
Paul
https://www.thewoodenworld.comForum: Themes and Templates
In reply to: [Storefront] Error in search function when using apostropheWhat error do you get?
I’m using storefront also (latest version) but don’t have a problem with apostrophe’s in my search box. At least I think I don’t!
You can check here: The Wooden World
Can you link us to your site to test please?
Forum: Themes and Templates
In reply to: [Storefront] Google Font IPhone IssueDid you have any luck with this? Apparently my website also appears different on iPhones.
I like your website by the way. Is that the storefront theme?
It looks quite different to my storefront website: The Wooden WorldHow did you get the 3 columns in the footer please?
Best of luck,
PaulForum: Themes and Templates
In reply to: [Storefront] Increasing Size of Storefront LogoHi,
I ran into exactly the same problems as you.
To resolve it, I installed the plugin: Storefront Site Logo by Wooassist.
This gave me an extra option on the Appearance->Customise page where I could upload my logo untouched.
I then added the following to my child style.css:/* Logo size for mobile site */
@media screen and (max-width: 768px) {
.site-header .site-branding img {
max-height: none !important;
max-width: none !important;
width: 322px !important;
}
}/* Logo size for desktop site */
@media screen and (min-width: 768px) {
.site-header .site-branding img, .site-header .site-logo-anchor img, .site-header .site-logo-link img {
height: auto;
max-height: none;
max-width: none;
width: 322px !important;
}
}You can see the finished results: https://www.thewoodenworld.com
You’ll have to play with the size a little bit as it tends to throw the layout off a bit!
Good luck,
PaulForum: Themes and Templates
In reply to: [Storefront] Two Catalog columns in mobile view?Strange. I have a Nexus 4 (1280L x 768W pixels) and have also tried on Galaxy 3 (1280L x 720W), still 1 column. Also when I resize the desktop site to 768 or less it’s still 1 column. What’s going on here?
Forum: Themes and Templates
In reply to: Storefront- How to change "Item" colour in "site-header-cart"?bump
Forum: Themes and Templates
In reply to: [Storefront] Two Catalog columns in mobile view?OK I’ve added the code you pasted above back in:-
@media screen and (max-width: 768px) {
ul.products li.product {
width: 48%;
float: left;
clear: both;
}ul.products li.product:nth-child(2n) {
float: right;
clear: none;
}
}Forum: Themes and Templates
In reply to: [Storefront] Two Catalog columns in mobile view?I deleted the code (it was in my child css) as it was not doing anything. I’m not using Jetpack (prefer to do things the old fashioned manual way and have read some bad things about jetpack and compatibility).
If you like I can add the code back in? But it really does nothing. All other child css stuff i’ve added works fine so no issues on that side.Forum: Themes and Templates
In reply to: [Storefront] Two Catalog columns in mobile view?Thanks James!
https://www.thewoodenworld.comThe desktop site is fine, but I would love to have 2 columns in the shop on the mobile site.
Forum: Themes and Templates
In reply to: [Storefront] Two Catalog columns in mobile view?This did nothing for me, no changes. Any ideas why?
I found it! Here’s the solution. Enter this into your child stylesheet:
.single .entry-meta, .entry-meta .author, .entry-meta .tags-links {
display: none;
}Forum: Themes and Templates
In reply to: Storefront – How to change logo size for mobileMany thanks, that’s the one. +Rep!!
I’d like to understand this better so I don’t have to bother you guys again so can you tell me why to set the logo size on the mobile site it only requires “.site-header .site-branding img” but for the desktop site it requires the 2 extra parameters “.site-header .site-logo-anchor img” and “.site-header .site-logo-link img” please?
Forum: Themes and Templates
In reply to: Storefront – How to change logo size for mobileYou Sir are a genius ??
It worked!
However…. the logo on the desktop site (>768px) is now a lot smaller than before – the only change I made was add your code above.
I tried changing the 222px and also tried my existing code, but I cannot change the size of the logo at all on the desktop site.
Any ideas please?