Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Travel Lite] page layout not constant and going mad!Do you mean like this? – Screenshot
I just increased the top margin on the container div:
#container { margin: 90px auto 10px; }Forum: Themes and Templates
In reply to: [Travel Lite] page layout not constant and going mad!You don’t need the /* at the beginning and */ and the end of the code – that will comment it out and it won’t make the change.
With the font size reduced it’s looking like this :
ScreenshotForum: Themes and Templates
In reply to: Can I change my theme a responsive one with no issuesWell first you would need another server or hosting account to do this.
I like to use a service called ‘ManageWP’ and use their ‘Clone’ function to copy a WordPress site from one location to another. You can read about it here.
If that sounds a bit too involved and you don’t mind some downtime for your website you could install a ‘Coming Soon Page’ plugin while you get your new theme sorted out.
There is a good one available for free by SeedProd – here.
Forum: Themes and Templates
In reply to: [Travel Lite] page layout not constant and going mad!Hi there!
Reducing the font size of the blog title seems to solve the problem of it getting covered up on the blog page:
img.site-logo, h1.site-title { font-size: 40px; }To use that code you will have to create a child theme or use a plugin such as ‘Simple Custom CSS‘
I hope that helps 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Suits] Woocommerce in Suits ThemeHi there!
You just need to float the container div to the left in order for the sidebar to align nicely on the right:
#container { float: left; }Which would give you this result: Screenshot
To decrease the size of the related product images try this:
.woocommerce .related ul li.product img, .woocommerce .related ul.products li.product img, .woocommerce .upsells.products ul li.product img, .woocommerce .upsells.products ul.products li.product img, .woocommerce-page .related ul li.product img, .woocommerce-page .related ul.products li.product img, .woocommerce-page .upsells.products ul li.product img, .woocommerce-page .upsells.products ul.products li.product img { width: 50%; }You can either paste this code into a plugin such as Simple Custom CSS or create a child theme.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Can I change my theme a responsive one with no issuesHi there,
Yes, you can certainly install a new theme without having to start from scratch. The amount of tweaking you will have to do will depend on the theme you use and your desire result.
To avoid downtime your could copy your site to another server and change the theme and tweak until you are happy and then copy it back.
That way you can properly test the new design before you roll it out to the public.
Good luck with your new design 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Eco Gray] size and color menu to productsHi there!
Yes, you can do that with the WooCommerce ‘Product Variations’ feature.
You can refer to the documentation here.
I hope that helps 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Bridge ThemeI’ve had a look at your site but I think you would be better off contacting Qode for support – as this is a premium theme which is not available at the WordPress repository.
I’m sure they will be able to help you out.
Best of luck.
Forum: Themes and Templates
In reply to: [Portfolio Press] svg custom logoThere’s a great article here about using SVG.
Forum: Themes and Templates
In reply to: Paragraph FormatPerhaps so, I can’t see it from here : Screenshot
You could try clearing your browsers cache and make sure your viewing at 100%.
Forum: Themes and Templates
In reply to: Paragraph FormatCan you post a link to a specific page that you have this problem with?
It all looks good from here: Screenshot
Forum: Themes and Templates
In reply to: Paragraph FormatHi there!
Do you mean the hyphens that split words between lines?
If so you can easily change this by using the following code in a child theme or by using a plugin such as Simple Custom CSS :
p { -moz-hyphens: none; }I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Social Media Icon ColorsHi there!
I think this is what you are looking for :
#top .avia-font-entypo-fontello, body .avia-font-entypo-fontello, html body [data-av_iconfont="entypo-fontello"]:before { color: #000000; }Which would produce this : Screenshot
To use this code you’ll either have to create a child theme or using a plugin such as Simple Custom CSS.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Make] Make header smaller?Hi there!
Could you post a link to your website so that we might make a suggestion for you?
Cheers 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Customizr] Push menu to the bottom right of headerHi there!
You can shift the position of the menu to the right using this:
.navbar .nav { left: 180px; }I hope that helps 🙂
Luke the Daft Duke