djr_xr6
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Overnight 4 of my wordpress sites began getting this errorI had the same issue. For what it’s worth, my solution to was to re-upload the post.php file to the wp-includes directory.
The _get_custom_object_labels() function appears to be declared in the post.php file. This file in my WordPress site had become corrupted and was empty. I don’t know why.
Also, I’m not sure if it makes a difference, but I made sure to take the new post.php file from the same version of WordPress as was running my site.
Hope this helps someone.
Forum: Themes and Templates
In reply to: Child Theme InstallAre you creating your own child theme? or do you have already created that you’re ready to install?
A correctly configured child theme will reference the “parent” in the style.css file. All you need to do is activate the child theme and it will look for installed the parent files itself.
Forum: Themes and Templates
In reply to: Weird Sidebar Formatting Issue–Help?It’s possible that there are one or two closing div tags in one of your posts that shouldn’t be there.
I’d start looking at the “The Future of Social Networks” post. Open it for editing, switch to HTML, scroll all the way to the bottom and see if there are any closing div tags that look like they don’t belong there.
Hope this helps.
Forum: Themes and Templates
In reply to: Static/Fixed/Scrolling HeaderTry the following CSS and see if it works for you.
div#main { padding-top: 100px; } header#branding { position: fixed; width: 1090px; background-color: #f2f2f2; }
Forum: Themes and Templates
In reply to: What fonts are being used on this websiteAgreed. An inspection of the CSS shows the following declaration in the majority of the rule sets.
font-family: verdana, arial, helvetica, sans-serif;
Forum: Themes and Templates
In reply to: Padding Between Header / Content / FooterApologies.
esmi’s solution is better.
Forum: Themes and Templates
In reply to: Padding Between Header / Content / FooterTry this.
Find the following code in your Twenty Eleven style.css file and remove it.
#page { background: #fff; }
Then add the following
#main{ background-color: #ffffff; overflow: hidden; } footer{ margin-top: 20px; }
Forum: Themes and Templates
In reply to: Strange horizontal line on Twenty Eleven pagesThe following rule sets exist in your style.css file.
line 699
.hentry, .no-results { border-bottom: 1px solid #ddd; margin: 0 0 1.625em; padding: 0 0 1.625em; position: relative; }
line 2184
#supplementary { border-top: 1px solid #ddd; padding: 1.625em 7.6%; overflow: hidden; }
The first relates to the line at the bottom of posts while the second is at the top of the footer.
Try removing the
border-bottom
and/orborder-top
declarations and see if that gives you the desired effect.Forum: Themes and Templates
In reply to: Title hover colorI’m assuming you’re referring to the “Welcoming our new council” and “Leading Huron” links, and that you would like them to be red on hover, like the “Council” and “Calendar” links at the top of the page.
Here are some things you could try.
Add the following CSS in the head section.
a:hover{color: #DB2828}Try removing the “color: #4AD2DF;” line from theme1313’s “normalize.css” file (line 96).
In the head section, change the line
a{color:#db2828}.button {background:#db2828}
to
a{color:#db2828!important}.button {background:#db2828}Hope this helps.