lettergrade
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Edit Top Menu Heading ?span style=border-style:outset;border-color:#ffff00;border-width:3px;
This is code that would go in your layout code, not your css file. You should remove this completely.If you want to change the font colour and size, you just have to change the following:
.top-menu li a { border-left: 1px solid #CCCCCC; color: blue; font-size: 16px; padding: 0 4px 0 8px; }See, my changes above would make the text blue and 16px large. That’s not necessarily the result you want, I know. But you can change the values to whatever you want, you just have to alter the
colorandfont-sizevalues individually.I’m not sure what you mean by ‘colored outset’ though. Could you describe a little more the effect you’re going for?
Forum: Fixing WordPress
In reply to: Text Wrap around Images No More?Nice catch, @alchymyth!
Forum: Fixing WordPress
In reply to: Log In Button Missing On Log in page (can't log in)While it’s out, maybe you could try deactivating the plugins to see if it has an immediate effect?
Forum: Fixing WordPress
In reply to: Text Wrap around Images No More?Hmm, the floats are in the code just fine. Try deactivating all your plugins and see if the problem is fixed. If that indicates a plugin conflict, you can reactivate them one at a time to see which one is causing the problem.
Your theme hasn’t been updated in a long time, though. If plugins don’t do it, try switching to the twentytwelve theme to see if the problem is theme-specific.
Forum: Fixing WordPress
In reply to: Newb with dynamic sidebar questionCould you try adding the image IN the sidebar? That would save you from editing the theme code.
1. Upload your image to your media library. Copy the url of the image location.
2. Go to Appearance > Widgets
3. Find the ‘Details’ sidebar
4. Add a text widget to the ‘Details’ sidebar, above any other widgets in the sidebar.
5. Add the code for the image location as html in your text widget.Now, this might be affected by some styling issues particular to your theme, but it sounds like you can probably work those out yourself..
Forum: Fixing WordPress
In reply to: WordPress Error ( cannot access the TEXT tab)p.s. @rsprzty it’s always a better idea to start your own support thread rather than joining in on a similar problem. Even though it sounds similar, you may have a different setup or end up taking different steps to fix it.
Forum: Fixing WordPress
In reply to: WordPress Error ( cannot access the TEXT tab)Has anything else changed recently? Have you updated your WordPress install, or added any new plugins?
The first step in troubleshooting would probably be to deactivate all your plugins and see if the problem still occurs. If that fixes it, then reactivate the plugins one at a time to determine which one is the bad guy.
What version of WordPress are you using?
Forum: Fixing WordPress
In reply to: Log In Button Missing On Log in page (can't log in)Two things to try:
a) deactivate all your plugins by connecting to the server via ftp and temporarily renaming the /plugins/ folder to /plugins-hold/ or something like that. See if you can log in to your login page now.
b) upload a fresh install of WordPress (was your WP install up to date to 3.5.2? If you had a really old one, you might want to install a fresh OLD version, and then update in stages from there.) but MAKE SURE you do not overwrite the /wp-content/ folder. You should MAKE A BACKUP of that folder before you start this process, so you have a copy in case something goes awry.
Forum: Fixing WordPress
In reply to: How to Edit Top Menu Heading ?This is it! You can change any of the values in this set of attributes in the style.css file of your child theme to make your changes.
.top-menu li a { border-left: 1px solid #CCCCCC; color: #333333; font-size: 11px; padding: 0 4px 0 8px; }Forum: Fixing WordPress
In reply to: Text Wrap around Images No More?Could you provide a url so we can check out the code output?
Have you changed anything about your site setup recently? Updates or plugins?
Forum: Fixing WordPress
In reply to: Unable to update via FTPHave you tried updating by uploading the wp files right to your ftp server, removing the need to go through the admin screen?
If you move ahead with that, make sure you don’t overwrite your /wp-content/ folder!!! And back it up first so you have a copy just in case.
Forum: Fixing WordPress
In reply to: Image bordersSo close! You typed
box-shadow:twice.Forum: Fixing WordPress
In reply to: Huge space between header text that I want to removeWithout a link to your live page, I can’t tell you the actual code for sure. Probably it would work if you reduced the top padding in this selector in your css (but you should create a child theme if you’re going to make changes):
#site-title { margin-right: 270px; padding: 3.65625em 0 0; }To be certain which code needs to be changed, you could use Firebug in Firefox to check out which css styles can be manipulated to reduce the height of that box, then create a child theme and add the change you need.
Forum: Fixing WordPress
In reply to: WordPress MoveDoes your hosting service provide backups? You should contact them to see if it’s possible they can restore it.
By the way, if you have questions specific to the plugin, you can post it in the WordPress Move support area.
Forum: Fixing WordPress
In reply to: Clone a site on same server?Not sure about the route you’ve taken, but thought I’d ask: have you checked out the Multilingual WordPress overview of options?