Chris Cook
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Hi! I have a Database Connection IssueDefinitely a DB issue. Do you have access to the old site still? I migrate using WP Migrate DB and never have any issues.
https://www.ads-software.com/plugins/wp-migrate-db/
after migrated.
– FTP site to new server
– create new database on the new server with same creds
– import migrated DB
– Check config and go.Forum: Fixing WordPress
In reply to: How to edit footerwell the Quick Links is a widget and can be edited by going to appearance / widgets. The rest are simple page or plugin edits.
Forum: Fixing WordPress
In reply to: Hi! I have a Database Connection IssueCheck your .htaccess
Forum: Fixing WordPress
In reply to: How to edit footerSimple. Don’t do it FTP. Just login with the user admin and make the changes.
Forum: Themes and Templates
In reply to: [AccessPress Root] Text is too far to the left…You messed up on the code.
#primary { float: left; padding: 15px width: 66.66%; }
You missed the end bracket after 15px, use this.
#primary { float: left; padding: 15px; width: 66.66%; }
Forum: Themes and Templates
In reply to: [Theme: Optimizer] Menu and Social Icons Not DisplayingGlad to help!
Forum: Fixing WordPress
In reply to: How to show images from child theme to front page ?Just create an images folder in the root. This way you can easily access from any theme.
<img src="<?php echo site_url(); ?>/images/example.png" alt="" />
Forum: Themes and Templates
In reply to: [Theme: Optimizer] Menu and Social Icons Not DisplayingTry adding this your header.php
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
Forum: Themes and Templates
In reply to: Semplicemente — Sidebar moved down! Help!I would overwrite the files you touched with the originals to get the proper layout back in place.
Forum: Themes and Templates
In reply to: [AccessPress Root] Text is too far to the left…Clear your browser cache or server cache. These changes worked for me in the inspector.
Forum: Fixing WordPress
In reply to: Variable Product attributesYou will want this plugin. Well worth it for what it offers in functionality.
Forum: Themes and Templates
In reply to: [Theme: Optimizer] Menu and Social Icons Not DisplayingLooking at the site live now and I can see the menu and social media icons just fine.
Forum: Themes and Templates
In reply to: [AccessPress Root] Text is too far to the left…Hope this helps you in the right direction.
#secondary.secondary-right { float: right; padding: 15px; } #primary { float: left; padding: 15px; width: 66.66%; } .widget_archive ul, .widget_categories ul, .widget_recent_entries ul, .widget_meta ul, .widget_recent_comments ul { padding-left: 25px; list-style: none; margin: 0; width: 90%; }
Forum: Themes and Templates
In reply to: Can't get Color of Blog Title to Change.title a { color: #000 !important; }
Forum: Themes and Templates
In reply to: Can't get Color of Blog Title to ChangeLink to your site please?