Peninah
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Edited functions.php now everything is whiteWhen you make a mistake in the functions.php file, you can’t fix it through the editor anymore. Instead, you have to open the file via FTP. If you navigate to it there, you can delete the code you added, and it should be fine.
A helpful tip for working with functions is to use a functionality plugin for testing–google it and you’ll get a tutorial. I find them really useful.
Forum: Fixing WordPress
In reply to: Strange white left bar and white menu barOh. And fun background 🙂
Forum: Fixing WordPress
In reply to: Strange white left bar and white menu barTry this–
Add to child theme:.site:before {
background: transparent;
}or display: none;
for the menu–
.site-header {
background: transparent;
}although it makes it hard to read the menu…you might want to add the background to the links only.
Can you work backwards? What have you been editing? Have you touched the theme files at all? Is it possible you deleted your footer.php by mistake?
It’s hard to say what could be causing the issues without seeing the full code of your website.
You say the issues came up once you installed the child theme. A good troubleshooting method is to remove your child theme, and slowly add it back bit by bit to see what parts of your code are causing issues.
First, check how it looks if you switch it to 2014 theme, and see if the footer and white space issue are still there. If it’s gone, the issue is your child theme, if not, then it’s not your child theme.
This is a good tutorial in case you are not clear on adding child themes (though you’ll need to change it to 2014). Once you get the child theme in, check your site. If things are problematic, you may have put it in wrong. Then you can add in slowly any code that you had in your first child theme and see what causes the issue.
Yes, a link to your website would be crucial.
I am afraid I don’t understand what the plugin has to do with your site issues, though.Forum: Fixing WordPress
In reply to: Help help help! Cannot access my WP Admin pageVery dangerous 🙂
Try this in the Codex. It has a few emergency procedures that you can use so long as you have FTP access.Forum: Fixing WordPress
In reply to: User RolesForum: Fixing WordPress
In reply to: Can't Log-InThere are a bunch of options outlined here in the Codex. Hopefully something will work for you.
I updated the plugin (even deleted it and re-installed it) and have the latest version of WP, but I’m also having this issue.
Is there anything I need to change other than selecting the fixed rate option (and adding levels) in the Shipping settings? Do I need to change something in the Checkout settings?
Forum: Fixing WordPress
In reply to: How to change banner color?Good for you!
There are several gradients to accommodate browser differences, btw.If it says you can upload a logo there, you should be able to. Maybe try again and make sure to click the right button in the “upload media” box, sometimes there are two options (something like “insert into post” rather than “save all changes”) and I sometimes click the wrong one by mistake.
Forum: Fixing WordPress
In reply to: How to change banner color?You’re very welcome!
The background color is really only there in case the image/gradient doesn’t show up. They both affect the background color/appearance.That background image is a gradient, so it’s the background colors in the banner.
To insert a logo, first check and see if your theme has any custom options. Sometimes a theme will allow you to upload a logo within the header. That would be the easiest. Check under Appearance.
Forum: Fixing WordPress
In reply to: How to create slider on front page [blackbird theme]To make any page your home page, go to:
Settings > Reading, and the first option is to change the front page. Make sure “A static page” is selected, and choose your home page from the drop down.As for making a slider, a link to your site would be helpful 🙂
Can you point out where exactly you want the slider?Forum: Fixing WordPress
In reply to: How to change banner color?First, you should make a child theme. You can read a tutorial here. They are needed to preserve your edits when the theme updates.
See if it works from your child theme. #header is definitely the right selector, and although it’s possible it needs to be changed in other places, I don’t see any. Are you making sure to change the background image as well as color?
If it still doesn’t work, the “cheating” way would be to add !important after the color, like color: #ffffff !important;
The !important tag means it takes precedence over any other css declaration for that selector + style.