Pann
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Footer helpHello,
absolutely positioned elements do escape page flow but they respect the parent container’s position if they have none declared.
Try this:
#site-generator { position: absolute; background-image: url('https://www.geimaku.com/wpcontent/uploads/2012/06/footer-bg.png'); width: 100%; margin: auto; left: 0; }
You’ll still have the horizontal scroll bar because padding is added to the box size, and your box is set to 100% width.
You can fix this by using this code:#site-generator { position: absolute; background-image: url('https://www.geimaku.com/wpcontent/uploads/2012/06/footer-bg.png'); width: 100%; margin: auto; left: 0; padding: 10px 0; }
If you wish the element to hover while the page scrolls, use fixed position instead, and set vertical position:
#site-generator { position: fixed; background-image: url('https://www.geimaku.com/wpcontent/uploads/2012/06/footer-bg.png'); width: 100%; margin: auto; left: 0; bottom: 0; padding: 10px 0; }
Let me know if you run into any issues.
Forum: Installing WordPress
In reply to: Accessing from the internetHave you tried deleting the resource completely, then re-uploading it?
I know the resized images are cached, it’s possible that WP is caching the path to those images as well.Forum: Installing WordPress
In reply to: Accessing from the internetMy guess is that WP is configured with “localhost”, “loopbback”, 127.0.0.1 or another local IP, and all of the resources are linked to that address, that isn’t visible on the web.
Setup a dynamic DNS service and use that address in wp config, rather than something visible only from your local network.
Forum: Fixing WordPress
In reply to: Page loads incredibly slowlyHello,
So everything is the same (server running your site and the domain name) and you simply transferred the domain to another registry, correct? Domain name wasn’t changed and files were not moved?
If that’s the case, I can’t see why there were be any sudden slowdowns ??
Even with GoDaddy’s uber slow DNS, you’d only feel it once, then your ISP/browser would cache the IP and everything would work as normal.I only deal with GoDaddy if I’m forced to. Terrible, terrible registry and even worse webhost. Bad choice to move to.
Forum: Fixing WordPress
In reply to: Disable Mouseover Image in Hatch ThemeGlad it worked, anytime ??
It most certainly won’t hurt, but they are much more likely to obey the response header than a meta tag ??
With that said, I do remember Cutts saying that turning 404 pages into honeycombs and not letting users adequately aware that the thing they requested was actually *not found*, is bad for SEO.
Forum: Fixing WordPress
In reply to: Disable Mouseover Image in Hatch ThemeHello!
Edit
/wp-content/themes/hatch/style.css
and remove:
.home .hentry:hover .entry-title , .archive .hentry:hover .entry-title { opacity: 1; }
Make sure you back up the file before making any changes.
Search engines won’t index any 404 pages since wordpress sends a 404 header along with the content, spiders are clever enough to stop right there, every content in that page is just to ease the blow on the end user:
Request URL:https://www.jpsoftwaretech.com/dgfcegfebc
Request Method:GET
Status Code:404 Not FoundForum: Your WordPress
In reply to: New Website Launch. Requesting feedback on load time.Nice site, but it loads quite slow (15Mbit connection, Europe):
29 requests ? 1.47MB transferred ? 11.70s (onload: 11.45s, DOMContentLoaded: 2.06s)
12 sec for the first hit is a tad high, images are unoptimized, you’re loading 5 CSS files and two JS files, and you have a broken link somewhere on the homepage:
https://www.qualityatlantaroofing.com/wp-content/themes/qualityworksmanagement/images/request-img.pngYour 404 page should look like a 404 page.
Forum: Themes and Templates
In reply to: Image gallery not workingSomething seems to be wrong with permissions and the cache can’t be saved, this looks similar to your issue:
https://themeforest.net/forums/thread/permission-denied-in-timthumbphp-/32775
Forum: Fixing WordPress
In reply to: Error message in the middle of my front pageI assume you managed to resolve this? I can’t find any errors displayed on your site.
Asking on this forum implies that you have some means of accessing your site/server.
If you don’t even have FTP access in order to restore an original functions.php file then yes, calling godaddy was always your only option.
Forum: Fixing WordPress
In reply to: Permalinks – anything but default triggers errorTry downloading a fresh copy of wordpress and re-uploading everything but wp-content folder. (make sure you save your settings file)
If that fails, try using this as your permalink structure:
/%postname%/Forum: Plugins
In reply to: WPPA does not work with W3TCI’m on the default (JSmin), never had any issues but I also don’t have a lot of JS on the site.
Restore the functions.php file (or carefully revert the changes you made).
Then go to yoursite.com/wp-admin/theme-editor.php and click “Header” on the right-hand menu. Navigate to “</head>” (you can use CTRL+F) and insert the google’s code right above the tag.
Save and confirm everything is alright ??