Rachel Baker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Deleting ThemesWhen you delete a theme (meaning you do not see the theme listed under Appearances->Themes ) you do remove the theme files.
However, if the theme created entries in the database – those would remain.I am not sure where you are seeing the message to edit your contact page with the small biz panel…but that may be the cause of your problem.
How to solve?
Honestly, there is no good way.Option 1:
You can take a backup of your database. Then try to find the entries left over from your previous theme and remove them. However, unless you are really comfortable with your backup and editing a database, I wouldn’t recommend this route.Option 2:
Contact the developer of the theme that has left remnants on your site to find out how you can remove them.Forum: Fixing WordPress
In reply to: Web App / Html PageWhy not put your webapp in your root domain and your WordPress blog in a subfolder?
Otherwise, you should still be able to put your webapp in a subfolder.
Forum: Fixing WordPress
In reply to: Switching to WP feed from FeedburnerA helpful piece of information would be a link to your site.
Forum: Fixing WordPress
In reply to: MP3 downloadable instead of playing automaticallyYou could just create an anchor element and use the mp3’s location as the href
Something like:
<a href="https://yourdomain.com/linktoyourmp3file.mp3">link text</a>
Forum: Fixing WordPress
In reply to: image quality problemYour site is running WordPress.com, so you need WordPress.com support: https://en.support.wordpress.com/
Forum: Plugins
In reply to: [Async Social Sharing] Tweet count is not increasingHarsha,
Right now it looks like you are using AddThis, not the Async Social Sharing plugin.
Forum: Fixing WordPress
In reply to: Completely make wordpress private?Seacoast Web Design,
I think it is great that you spend time helping in the support forums.
I do agree that the OP should discuss the best approach with their website hosting provider. That is very good advice.
However, I do question the accuracy of this statement:
Since .htaccess seems to be a file maligned on site infiltration,
Forum: Fixing WordPress
In reply to: changed http to httpsDo you have a valid SSL certificate installed on your web-host?
You should follow the instructions linked above by @cubecolour and change your url back to http
Forum: Fixing WordPress
In reply to: Completely make wordpress private?You can set your .htaccess file to require a password to access your site.
You would need to add something like this to your .htaccess file:
AuthType Basic AuthName "Password Required" AuthUserFile /full/path/to/.htpasswd Require valid-user
…and then you will need to create a file called .htpasswd with a username and password.
Full instructions here:
https://davidwalsh.name/password-protect-directory-using-htaccessForum: Fixing WordPress
In reply to: Weird wordpress dashboardHave you tried to re-install the WordPress core files for the one site with dashboard issues? Maybe one or more files are missing.
Forum: Fixing WordPress
In reply to: Hide Scrollbar, display: hidden doesn't workYou want overflow: hidden
You can add
overflow: hidden;
to the CSS styles for the #Content div
Forum: Fixing WordPress
In reply to: Weird wordpress dashboardDid you install a plugin recently? Something looks to be changing the admin CSS
Forum: Fixing WordPress
In reply to: Permalink issueYou are seeing the extra data after your url because ‘ALTERNATE_WP_CRON’ has been turned on. If you did not do this manually in your wp-config file, then disable any recently added plugins to find the problem.
Forum: Fixing WordPress
In reply to: Adjusting HeightLook in the file: /wp-content/themes/solidgold/css/widgets.css
Around line 18 you should see:
#artists {height: 2955px; margin-top: 40px; margin-bottom: 0px; padding: 30px; width: 900px; background-color: #d7d7d7;overflow: visible;}
Forum: Fixing WordPress
In reply to: Using border-radius for dropdown menu in corporate themeBring it all together like this:
#nav li li a, #nav li li a:link, #nav li li a:visited { color: #FFF; display: block; width: 158px; font-size: 12px; margin: 0; padding: 5px 10px 5px 10px; border-bottom: 1px solid #ef8300; position: relative; }
AND
#nav li ul { z-index: 9999; position: absolute; left: -999em; height: auto; width: 180px; margin: 0 0 0 0px; padding: 0; background: #ef8300; border-radius-bottomright: 4px; -moz-border-radius-bottomright: 4px; -webkit-border-radius-bottomright: 4px; border-radius-bottomleft: 4px; -moz-border-radius-bottomleft: 4px; -webkit-border-radius-bottomleft: 4px; }