Luke Stacey
Forum Replies Created
-
Forum: Themes and Templates
In reply to: changing links styleHi there,
If you post a link to your website we can a look and make a suggestion for you.
Cheers 🙂
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Local Business] Activating child theme and editing css fileHi there!
Is that a screenshot of your child themes’ style.css?
If so, it looks like you just copied the header information from the parent themes stylesheet. You need to put your own info in there:
See here for a template of what you need at the top of your child theme’s style.css file.
Also, WordPress now recommends enqueuing the stylesheet in your functions.php file rather than using the @import rule.
There is also a video-tutorial here you might find useful.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Hueman] How can I centre my custom logo on headerHi there!
I just took a look at your website and was able to center your logo using this code snippet:
.site-title a img { margin-left: 65%; }You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: How do I top align Body to header? (Even Closer?)Hi there!
I just took a look at your website and was able to move the slide right beneath the header without any space in-between.
This snippet of code should do it:
.home .entry-content { padding: 0; } .home .rslides_container { bottom: 24px; }You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.
I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteI can see where the problem is with the 10px gray bar now:
You have this on line 3 of your child theme’s style.css
#header { box-shadow: none; margin-top: 0; }but also this further down, on line 122:
#header{ margin-bottom:-20px; margin-top: 10px; }The one on line 122 which actually be the rule that is applied.
So you just need to make sure there is only one
#headerdeclaration.Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteYeah, that does comment things out but for the child theme to work it’s necessary to have at least the theme name and template there – otherwise it won’t be recognized.
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteIt’s hard to say without looking.
Does your child theme appear when you go to Appearance -> Themes ?
If, so what happens when you try and activate it?
Could be that you deleted the @import rule in your child theme’s style.css file or the style.css header.
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteHi David,
That strip is a result of having the #header margin-top at 10px – it should be at 0px. Make sure it’s not in your child theme’s style.css file twice.
#header { margin-top: 0; }I just took a look at your website again and it looks like all the content has gone. Are you having problems?
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteIt’s showing for me now. I think it was just my browser cache.
It is a little faint – but if you increase that first number (5px) you see it get more pronounced.
ScreenshotForum: Themes and Templates
In reply to: [Atahualpa] Put Comments on the pagesYour welcome. Yay! 🙂 Glad you got it sorted.
Forum: Themes and Templates
In reply to: Theme: Make – Increasing text size in header barYeah, sometimes the hierarchy of things can get a bit confusing 🙂
Glad you got it sorted!
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteHi David,
I just checked your site and it doesn’t appear you have the
box-shadowon the#footer-wrapper. Perhaps this is why it’s not showing?No, it won’t be the margins.
You can adjust the
box-shadowas you see fit. I like to use this little tool that often comes in helpful 🙂Cheers,
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Atahualpa] Put Comments on the pagesI think I’ve found the problem.
Take a look at this: Instructions
1. Go to Appearance – > Atahualpa Theme Options
2. Choose ‘Style & Configure Comments’
3. Find ‘Allow comments on “Page” pages, too?’ and set to ‘Yes’
4. Scroll to the bottom and click ‘Save Changes’
Hopefully that will do it 🙂
Forum: Themes and Templates
In reply to: [Responsive] Box shadow around entire siteOk, I was able to do that.
I had to change some of the margins you set in the child theme style.css so be careful when you paste this in, making sure you don’t duplicate anything.
Also, you can just remove the box-shadow property from the
#wrapperand the#header– you don’t need to putbox-shadow:none#wrapper { box-shadow: none; } #header { box-shadow: none; margin-top: 0; } .skip-container { display: none; } #container { box-shadow: 14px -3px 17px 0 rgba(110, 110, 110, 1); margin: 20px auto 0; padding: 0; } #footer-wrapper { box-shadow: 5px 15px 26px 0 rgba(110, 110, 110, 1); }So you only need to set two box-shadows, one for the
#containerand one for the#footer. However, it’s necessary to correct the margin on the#headerand#containerfor this to work.I hope that helps!
Luke the Daft Duke
Forum: Themes and Templates
In reply to: [Atahualpa] Put Comments on the pagesCan you post a link to your site and I’ll take a look.