Phil
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [WP Framework] Changing some fugly bits of textHave a look in archive.php (if you have one).
Forum: Fixing WordPress
In reply to: Question Regarding Exporting – Please Help!Changing domains will always have an effect on traffic. Any backlinks pointing to:
http://www.domainA.com/blog/cool-post
will be lost when moved to:
http://www.domainB.com/blog/cool-post
The content will still be read and picked up by Google, so if the content is highly-optimised, it may be minimal loss, but backlinks and any links will definately be lost. Just depends on how much SEO was applied.
If the topic isn’t too competitive then it will most likely feature high too.
Forum: Fixing WordPress
In reply to: Working blog one day has a parse error?There’s a problem in your index.php file and more than likely, a syntax in the PHP is missing or not correct.
You may have deleted or amended a line of PHP which is causing the error. Retrace your steps and undo what you have done until it works.
Forum: Fixing WordPress
In reply to: Gallery2/WPG2 Page Width problemsNo problem. Be sure to check other pages of the site to ensure it hasn’t messed anything else up.
Forum: Fixing WordPress
In reply to: feedburner form interferes with other forms..Have you tried the mailchimp widget?
Forum: Fixing WordPress
In reply to: Moved wordpress site and it is blankCould be a number of things eg, .htaccess file. Need more info really to determine where the problem lies.
I find it sometimes easier to install WordPress on new server and get it working, then import all data from admin as well as uploading the theme. Moving files from one to another causes a lot of people issues and the famous ‘white screen of death’.
Forum: Fixing WordPress
In reply to: How to turn off header image automatic resize?The width for your entire site is 960px.
Your header image (original and NOT resized) is 786px x 365px.
Not resizing will mean a gap of 174px somewhere.
Thee resizing is going to be theme-specific, so you may need to throw yourself into the code and hunt it down. My first check would be in the header.php.
You’ll also need to adjust #title and #header, as these are populated with 960x200px as well.
Check if there is a height/width setting in the theme options.
Phil
Forum: Fixing WordPress
In reply to: Gallery2/WPG2 Page Width problemsIt will be your general stylesheet.
Forum: Fixing WordPress
In reply to: Gallery2/WPG2 Page Width problemsRemove width:auto from your stylesheet (line 1209):
table { border-collapse: collapse; border-spacing: 0; margin: 0 0 20px; padding: 0; width: auto; }so finished should be:
table { border-collapse: collapse; border-spacing: 0; margin: 0 0 20px; padding: 0; }The ‘auto’ setting will automatically fix it’s width to the internal size of the container, so by removing this, it is then kept at 100%.
Forum: Fixing WordPress
In reply to: Date of my blogIn WordPress admin:
‘Settings’ –> ‘General’
About halfway down, you’ll see ‘timezone’. Set to your preferred time and a little below it, you can also change how the date appears on the site.
Phil
Forum: Fixing WordPress
In reply to: How to Center Contact Form?No probs.
Forum: Fixing WordPress
In reply to: Page 404s at its link regardless of permalinkhave you tried deleting the page, deleting permanently from trash and starting a new page with the same content?
Forum: Fixing WordPress
In reply to: Page 404s at its link regardless of permalinkDoes it work when published? As sometimes ‘preview’ doesn’t work properly.
Also, check the editable URL from the post page (the bit you can edit, just about the post title) and make sure that it corresponds to menu items, links etc).
Forum: Fixing WordPress
In reply to: How to Center Contact Form?PS, you can set the width to whatever you like, but looking at tyour site, 260px should be the minimum.
Phil
Forum: Fixing WordPress
In reply to: How to Center Contact Form?Hi,
What you need to do is add this to your CSS:
.wpcf7-form { margin: auto; width: 260px; }Try that. If it doesn’t work, open the ‘contact-form-7/admin/styles.css’ from the ‘plugins’ –> ‘editor’ and paste the same code in at the bottom. If that makes no difference, you may need to add a div in at the start, like:
div.wpcf7-form { margin: auto; width: 260px; }