Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [PinBlack] Blurry images upon uploadHi there!
I just had a look at your site and the images don’t appear to be blurry. Did you fix the problem?
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Alexandria] How do I customize this?Hi Tim,
Do you want to change the picture and text on the front page?
If so, try this:
In your WordPress Dashboard go to Appearance -> Theme Options.
On the left hand side look for a menu item called ‘Header One Settings’
You can choose an image here to use (which would replace the default one on the left hand side).
Under that there is a box for the ‘Headline’ – this is the text on the right hand side.
Then ‘Feature Text’ which will replace the text under the headline on the right hand side.
You can also add a call to action and link below (which will show up as the button).
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Genbu] change pages and menu background colorHi there!
You could do this with custom css styles.
When you make the decision of what it is exactly you want to change (you can ask here on the forums) we can suggest some code for you.
You can then paste this code in one of two places:
#1 Use a plugin like Simple Custom CSS and paste the code in there.
or
# Create a child theme and paste the code into your child theme’s style.css
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Customizing a Theme before going liveHi there!
To avoid downtime when customizing a new theme I like to use a tool such as ManageWP which has a ‘clone feature’.
With this you can create your new site on a test domain (or locally) and then copy everything over with just one click.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Help needed to choose a new responsive wordpress themeReally? It doesn’t sound that complex, unless I’m missing something here 🙂
Your site still looks great and wow, super fast!
I would suggest using a theme like Responsive.
It doesn’t look much aesthetically, but it’s a great starter for a responsive site.
That theme could quickly be made to look like your site and has built in most of the ‘responsiveness’ you’d need to get started.
But it would require you to get dirty with the code. Depends on your skill level I guess. 🙂
Good luck with the update!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: Help needed to choose a new responsive wordpress themeHi there!
Do you want to change the design of your site or keep the existing design but just make it responsive?
Forum: Themes and Templates
In reply to: [Redesign] Redesign and changing of websiteHi there!
What kind of interactivity do you want to include on your site?
Forum: Themes and Templates
In reply to: Add Mailchimp subscription fieldHi there!
For the footer menu you could use a simple plugin like MailChimp List Subscribe Form
for the pop-up you could try Popup Ally
Hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Twenty Fourteen] height of the headerYes, so first you would have to find the page-id of the cart page and then target the header.
Similar to this:
.page-id-1 header { display: none; }🙂
Forum: Themes and Templates
In reply to: Remove 'add to basket' from products thumbnailviewHi there!
I think this should remove the outline:
.cart-options { display: none; }Hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: NewbieHi there!
Welcome to the world of WordPress!
What theme are you using?
It’s best to take things one step at a time. What’s your first task, maybe we can help you?
There are dozens of tutorials on youtube and elsewhere or you can ask questions here on the forums.
Good luck building your first website!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [evolve] How do I add a logo to the tagline on evolve themeHi there!
You can upload a header image by going to Appearance -> Header.
or
Do you want the logo to replace the tagline or sit beside it (left or right?) ?
If so,
The first thing you’ll need to do is create a child theme. You can find instructions here.
Next, copy the header.php file into your child theme folder.
and paste this html:
<div id="my-logo"><img src="http://www.myurl.com/my-logo.png" alt=""></div>(Replace with the url of your logo image)
on line 81 just before:
$tagline = '<div id="tagline">'.get_bloginfo( 'description' ).'</div>';You can then adjust using CSS, this will depend on the location of the logo.
I hope that helps a bit!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Sequel] Please help with static front page.Hi there!
Try this code:
.page-id-2 .entry-title, .page-id-2 .entry-content p { display: none; }You have two options when using this code:
#1 Use a plugin like Simple Custom CSS and paste the code in there.
or
# Create a child theme and paste the code into your child theme’s style.css
I hope that helps!
Luke the Daft Duke
Hi there!
Yes, its possible:
#page-id-number .element-you-want-to-hide, #page-id-number .element-you-want-to-hide, #page-id-number .element-you-want-to-hide, { display:none; }If you post a link to your site I could be more precise with the CSS for you.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Twenty Fourteen] height of the headerHi Lisa
You should be able to do this with CSS by using the page id and
display:none.If you post a link to your site we can suggest the exact code you’ll need.
I hope that helps!
Luke the Daft Duke