jmag
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Child theme Sidebar has move to bottom of pageWhat theme are you using? The parent theme may have some customizations that you are not aware of. Do you know the structure of the parent theme?
Forum: Themes and Templates
In reply to: Child theme Sidebar has move to bottom of pageGlad you got the style issue fixed.
When you say template, is it a page or post type template?
If it’s a page template, the template needs to be named in the comments at the top of the template file. Inside the administration area, in the page edit screen, select the template you created as the template to use for that page.
If it’s a post type the template file needs to have a specific name. WordPress will then use it as the template for that post type.
If it’s one of the template components, like header.php, the same naming rules apply as for the posts.
This is a helpful diagram to help you decide what names you need for your template.
Forum: Themes and Templates
In reply to: [Theme: Generatepress] Remove white space under widgetIt wasn’t clear from a cursory look as to why, but the font-size is causing the extra white space at the bottom. To target only those two sidebars, in your CSS use:
#widget_sp_image-5, #text-15 {
font-size: 0;
}Forum: Themes and Templates
In reply to: GK Portfolio – Remove white space on page/postsCan you post a link to the page? It will make giving a suggestion simpler by seeing the page.
Forum: Themes and Templates
In reply to: Child theme Sidebar has move to bottom of pageIn the child theme did you import the parent theme styles?
At the very beginning of the file you should have something like this:/*
Theme Name: My Cool Child Theme
Description: Some description here.
Author: Joe Anybody
Template: ParentThemeFolderName
Version: 1.0
*/@import url(../parentThemeFolder/style.css);
Are you able to give more detail about your child theme?
Forum: Themes and Templates
In reply to: [CyberChimps] Home Page will not loadYour hosting provider would definitely be someone worth asking about that. He can take a look to see if any files were recently uploaded.
Forum: Themes and Templates
In reply to: [CyberChimps] Home Page will not loadNot exactly. The index.php has to be there for WordPress to load any page creted under WordPress. I was wondering more about the contents of root level of your site.
I have the hunch that there may be a non WordPress related file, index.html, file in the site.
Did you or anyone who has access to the site recently make changes to the site or the root folder? Upload a file as part of a redesign, test or something similar? The reason I ask is that you say it happens regardless of what theme you use and all your plugins are deactivated.
If you have FTP access to your site, you can look at the folder where index.php is and see if there is another file called index.html or similar.
Forum: Themes and Templates
In reply to: [CyberChimps] Home Page will not loadIs this a new site? The reason I ask is that looking at the source view of the home page, what little markup there is, looks like it was made by hand.
Did the person who created the site create an index.html file before deciding to use WordPress? If so, it looks like the home page may be pointing to that original index.html file.
To fix the problem you will either need to remove the index.html file or use an .htaccess redirect.
Forum: Fixing WordPress
In reply to: 404 Error on WP login page – Network Solutions wants to charge meRenaming the plugins folder doesn’t invalidate the plugins, it effectively hides them from WordPress.
WordPress interprets this as no plugins folder existing. I don’t know if that will cause an error though, never tried it.
Forum: Fixing WordPress
In reply to: 404 Error on WP login page – Network Solutions wants to charge meDo you have FTP access to your blog, and a local version with all the files?
Forum: Themes and Templates
In reply to: [GamePress] Google PluginI looked at the source code and all it showed was a head tag and the link to Google+.
Not all hosting providers make it easy or possible to empty the cache. Whether you can or not depends on your particular provider and plan.
Forum: Themes and Templates
In reply to: [GamePress] Google PluginAll I see is a white page with a link at the top that says Google+.
Depending on your hosting provider, you may be able to manually empty the server cache from your account’s user control panel.
Forum: Themes and Templates
In reply to: [Ascetica] Child ThemeDo you mean the styles? If so you need to import the parent theme’s styles using @import before your begin your custom CSS.
Forum: Themes and Templates
In reply to: [GamePress] Google PluginHave you tried from different browsers or machines. It could be a browser cache issue.
Forum: Themes and Templates
In reply to: [Ascetica] Child ThemeWhat error message are you getting when you install your child theme?