Jay
Forum Replies Created
-
I have never used an SEO plugin, so I can’t really say if this is the plugin or user error. However, just by viewing the amount of support questions related to the plugin, I would probably refrain from using it, especially if it’s even “suspected” of hurting your ranking.
Forum: Hacks
In reply to: Using WordPress functions inside classes without constructs?Well since no one cares to entertain my brain with an explanation, and counting that I have utilized a workaround, I’ll mark this as resolved.
Forum: Fixing WordPress
In reply to: Reducing space between menu and text twenty elevenln was meant to be (Line), I don’t know why it looks like in but oh well. Yea, line 540 and 681. Alternatively you can look for the identifiers mentioned.
Forum: Fixing WordPress
In reply to: website is downUmm… it loads for me?
Forum: Fixing WordPress
In reply to: Reducing space between menu and text twenty elevenNo I have a local install of WP, here’s what you need to do.
The navigation has a 6px bottom margin, according to style.css ln 540 which is under the #access identifier.
Furthermore, the content itself has a top padding of 1.625em, according to style.css ln 681 which is under the #main identifier.
You can override these two by editing their values, or you can simply declare your own at the end of the style.css file, your call. Changing these two values within Chrome’s editor works for me.
Forum: Fixing WordPress
In reply to: wp-login page is messed upFor some reason your admin labels are positioned with “absolute” and once I switched them to static, it works fine.
Add this to your wp-admin.css file:
#loginform label{position: static !important;}Forum: Fixing WordPress
In reply to: Reducing space between menu and text twenty elevenI assume you mean the navigation menu and content blocks?
Forum: Fixing WordPress
In reply to: How to insert data into custom fields via forms on the page.Check out Post Meta Boxes I use them all the time, and it seems to be the best fit for your situation.
Forum: Fixing WordPress
In reply to: problems with timthumb in subdirectoryTimThumb may be looking for a relative path, for instance, my web path is /public_html/ Now your domain and subdomain may still be pointing to that directory, but when you move it to say another folder, for the sake of argument, it’s /public_html/subfolder, timthumb can’t find it anymore, because your domains aren’t pointing it there.
Moral of the story, find out where your domains are pointing, then move it.
Forum: Hacks
In reply to: Using WordPress functions inside classes without constructs?FYI this is the only workaround I can see to utilize the plugin functions within a class without adding action hooks:
function __construct(){ require_once(ABSPATH.'/wp-admin/includes/plugin.php'); }I would still like to know why I have to require a file just to use functions that are available anywhere outside the class.
Forum: Fixing WordPress
In reply to: change background colorThe primary background color, I assume you mean the HTML body itself?
Go into your theme’s style.css file and add the following:
body{background-color:#ff0000;}
though your color of choice should be of course different.
Forum: Fixing WordPress
In reply to: how to display 2 specific posts in a page with commentsOn your page you would have two WP_Query calls, one per post. Use WP_Query if you want to utilize a loop, otherwise you can just use get_post() to return an object or array.
Forum: Fixing WordPress
In reply to: Multilanguage website based on wordpressThis may help, though I don’t know the details: WordPress in your language
Forum: Fixing WordPress
In reply to: adding .js to header alignmentContent alignment is dealt with by CSS or HTML, not JavaScript. Find the div you want to align, then set it’s css property to text-align:center
Forum: Fixing WordPress
In reply to: Is this a footer? Menu bar?It’s hard coded in the footer.php file then, hopefully that’s the only location 🙂 Remember, don’t infringe upon the copyrights of the content provided to you, give credit where it’s due, especially if you got it for free.