Jarret
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Storefront] mobile versionMost likely yes, which widget were you wanting to target? You could either target all the widgets on a page or a specific one.
Forum: Themes and Templates
In reply to: [Twenty Eleven] Can’t find home page IDGo into your admin dashboard and edit the page you have configured as your homepage, look at the address bar in your browser and you’ll see
/wp-admin/post.php?post=1769&action=edit
Where 1769 is the page/post ID
Forum: Themes and Templates
In reply to: [Storefront] Mobile logo sizeYou can add some height into the .site-branding one so something like
.site-header .site-branding { height: 75px; text-align: center; width: 100%; }
Forum: Themes and Templates
In reply to: [Twenty Twenty] Changing Primary color with CSSYou’re welcome! Were you able to get the rest figured out in terms of making changes? Sounds like you did from your reply but just wanted to double check ??
Forum: Themes and Templates
In reply to: [Storefront] Storefront Install ErrorHard to say for sure without seeing an error message or logs. Is there any type of error message that shows up when it breaks?
If not, you may need to try it again and then look at the error logs on your hosting server right after to see if you can pinpoint what is causing the issue. If you don’t know how to FTP/SFTP onto your server, you should be able to access some type of file management/error logs from your Bluehost control panel area. Been awhile since I’ve logged into a Bluehost account so I’m not quite sure of their setup.
Additionally, you could also try contacting their support right after the error to have them investigate further. They may not be able to fix it for you, but they should be able to provide you with the error log itself at least.
Forum: Themes and Templates
In reply to: [Storefront] Header StorefrontWhich empty spaces in particular are you wanting to adjust? Just the area that you linked in the image above with the red arrow for the menu on mobile/tablet? If so, you could try something like this
@media screen and ( max-width: 768px ) { .secondary-navigation { font-size: 14px; } }
Forum: Themes and Templates
In reply to: [Twenty Twenty] Twenty TwentyHej, ser du fortfarande problem h?r? N?r jag kontrollerar min PC i Chrome och p? Safari p? min iPhone ?r bilderna samma f?r mig.
Det ?r m?jligt att det kan bero p? cachning p? dina enheter. Om du fortfarande ser problem kan du f?rs?ka l?gga till n?got som
?nocache
i slutet av inl?ggets URL i b?da webbl?sarna f?r att se om det fixar det?Forum: Themes and Templates
In reply to: [Twenty Eleven] Page widthHi, the following in Appearance->Customize->Additional CSS should get you pretty close
body { padding-left: 0px; padding-right: 0px; } #page { margin-left: 0px; margin-right: 0px; max-width: 100% }
May need some more specific code on certain device widths but try that out and see if you can spot any major issues.
Forum: Themes and Templates
In reply to: [Twenty Fourteen] Hide Post TagsHi, were you able to get this resolved? When looking at posts on the site you linked I’m not seeing any tags showing up.
Forum: Themes and Templates
In reply to: [Storefront] Storefront font changeHi, I see you already got some added into your child theme’s style.css file. Either the child theme or the Additional CSS area is probably the best as it doesn’t involve the install of a plugin which could load up unnecessary font files that you don’t use.
Were the changes you have setup in your style.css file adequate or were you looking to make further changes to the fonts?
Forum: Themes and Templates
In reply to: [Storefront] Best Way To Optimize Images in WordPressHi, you’d want to optimize the images before uploading them so you’d have to search for an image optimization site/service as there are many different ones.
Once they are optimized, their overall filesize will be smaller which should allow them to be uploaded faster onto your hosting server.
There are plugins that optimize images already, but they have to already exist on your hosting server for them to work.
Forum: Themes and Templates
In reply to: [Storefront] Mobile logo sizeHi, try the following
@media screen and ( max-width: 568px ) { .site-header .site-branding { text-align: center; width: 100%; } .site-header .custom-logo-link { margin: auto; width: 100px; } }
Forum: Themes and Templates
In reply to: [Storefront] Storefront handheld footer barHi, you could try starting with some code like the following
.storefront-handheld-footer-bar { height: 40px; position: absolute !important; top: 140px; }
May need to adjust the height and top values but it should get you close to what you were looking for.
Forum: Themes and Templates
In reply to: [Twenty Twenty] How to narrow width of Desktop Expanded MenuAh, apologies for the misunderstanding. The following CSS should target what you’re looking for I beleive
.cover-modal .modal-inner { width: 25rem; }
Forum: Themes and Templates
In reply to: [Canape] blog/news pageI see a dividing line on your /news URL that you linked below the first post. You just don’t have any other posts to display to show more of them like the demo site has.