David_G
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Unable to loginAre you using a host that has Cpanel? If so try accessing your site from the Cpanel.
Forum: Fixing WordPress
In reply to: High I/O and slow website on GoDaddy1: Optimize websites in your GoDaddy Cpanel, that will speed up your site load.
2: Add Heartbeat Control plugin, will speed up your dashboard.
Forum: Fixing WordPress
In reply to: change font – do I need child header.php?@mrsmill if you use the enqueue method, you don’t need to add the fonts anywhere else. Just use css to make global changes, and you can use the fonts in your post editor also.
Forum: Fixing WordPress
In reply to: change font – do I need child header.php?If you want to add google fonts add this to your child theme functions.php file. Change the fonts listed on this snippet, then you can style theme in your style sheet and/or use them in your pages/posts.
// Add Google Font add_action( 'wp_enqueue_scripts', 'my_google_font' ); function my_google_font() { wp_enqueue_style( $handle = 'my-google-font', $src = 'http://fonts.googleapis.com/css?family=Playball|Dosis|Raleway|Orbitron|Tangerine', $deps = array(), $ver = null, $media = null ); }Forum: Fixing WordPress
In reply to: Numbered Listimsuzy, I see you edited the style sheet directly on your theme. Bear in mind that when you update the theme, that edit may be lost. To avoid that you can create a child theme or use custom css.
Try this out, Adjust your margin px to your liking. Do this in the TEXT editor not the visual editor.
<div style="float: left; margin-right: 14px;"> YOUR IMAGE HERE </div>Forum: Fixing WordPress
In reply to: Numbered List#stephencottontail,
Your theme uses the shorthand list-style: inside on
<ol>within a widget. But that doesn’t work for<ol>because using the shorthand implicitly sets list-style-type to disc if nothing else explicitly sets it beforehand. Doing so “breaks” the numbering on<ol>, and that’s what you get. Explicitly setting list-style-position instead of using the shorthand keeps list-style-type set correctly for<ol>.The
<ol>is and was working on the first post she listed in this thread. Why wouldn’t it work on the other in the same WP Site? Take a look at the top of this thread for the link.Forum: Fixing WordPress
In reply to: banner covering titleglad that worked for you. Can you mark this resolved.
Forum: Fixing WordPress
In reply to: banner covering titlePlace that in your custom css or create a child theme.
Forum: Fixing WordPress
In reply to: banner covering titleTry this, should work on that post anyway:
post-id-771 .wtrContainer { margin-top: 100px; }Forum: Fixing WordPress
In reply to: Create site so investers can buy shares at the companyYou can setup just about anything through PayPal and you don’t need a plugin for it, they will give you a code snippet that you add to a page, the SSL is then covered on their end. You will need to setup a merchant account with them. Safe and secure.
Forum: Fixing WordPress
In reply to: Suddenly can't log in to admin pagesWhat were you doing prior to the admin screen going blank? New Plugin or theme? Edited PHP?
Forum: Fixing WordPress
In reply to: Plugin Broke Admin sideThe folks at BPS are extremely helpful, I use BPS Pro on my sites and it works great, never regretted installing it.
Forum: Fixing WordPress
In reply to: I searched my blog for the first time… i think there's troubleThat link looks like an email address. Anyway you should got to the forums on wordpress.com for help.
Forum: Fixing WordPress
In reply to: URL helpContact your hosting company about how to change the DNS settings.