Chrisdc1
Forum Replies Created
-
Do you have FTP access to the site or any other ways of editing the files directly?
Ok, take all the new code out of functions.php. Take it back to just the code in your first post
That’s just a moderator letting you know the correct way to post code on the forum, I think they’ve already fixed your post to use the correct method.
Sorry, I made a small error copying the code over, try using this code as your entire functions.php and we’ll see if that works.
That’s interesting, have you tried it in a completely different theme at all?
It sounds like everything should be working properly, but perhaps the plugin doesn’t work well with child themes. For now I would try adding elucidate_setup() into your functions.php (on the end of the file should be fine) and see what happens.
Hello, can I just check, are you saying that featured images aren’t appearing in your child theme at all, or that they aren’t appearing in the emails generated by this plugin?
Forum: Themes and Templates
In reply to: Change Floating MenuWhen you create a page it doesn’t automatically appear on the menu, you have to add it separately. If that is it let me know if you need any further guidance.
Forum: Themes and Templates
In reply to: Change Floating MenuOh yes I see the problem, find the #header selector I mentioned above and try changing
height: 100px
intoheight: 170px
(or something like 170, adjust according to what looks good to you)Forum: Themes and Templates
In reply to: Strange problemHere’s what I’m seeing:
https://i.cloudup.com/vjeLnzA0Ac.png
https://i.cloudup.com/xMgINBCn7P.pngEDIT: Just saw your most recent post, happy I could help.
Forum: Themes and Templates
In reply to: Strange problemI’m sorry, but is it possible you’ve zoomed your browser on one of the 2 versions, and it’s now remembering it each time you reload? Apart from the minor content differences the bad screenshot is basically a scaled up version of the good one, and I really don’t see the same difference here.
Forum: Themes and Templates
In reply to: [AccessPress Lite] header logo white backgroundThe gradient on your header is a background image being set by this piece of css (at line 856 in style.css):
#masthead #top-header{ background: url(images/bgheader.jpg) repeat-x scroll left bottom; }
Forum: Themes and Templates
In reply to: Strange problemI can’t see any differences in image quality between the two sites. If you’re still having problems it might be worth uploading screenshots so people can see what you’re seeing.
Forum: Themes and Templates
In reply to: Change Floating MenuNormally the advice here would be to make a child theme, but as you seem to have your own custom theme I’m going to assume you can just edit your code directly.
In the file style.css find this piece of code at line 176:
.menu ul { margin: 0; padding: 0; list-style-type: none; list-style-image: none; float: right; margin-top: 31px; }
Replace it with this:
.menu ul { margin: 0; padding: 0; list-style-type: none; list-style-image: none; float: left; margin-top: 120px; margin-bottom: 20px; }
Find the #header selector in line 132 and delete this line:
border-bottom: 5px solid #990000;
Your original theme author seems to have made some slightly odd choices that make the theme tricky to modify, but that should work for now.
It’s possible you’re experiencing a slightly different issue as this one has already been resolved as mentioned above. If you’re having an issue with your site post a new thread with more details. I’m on my mobile right now, but I’ll check if you have later and do what i can to help.