hschull
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Photoshop tables spaces in wordpressYou’re welcome!
I try to help when I can, since I also ask for help here when I’m stuck.
I guess that’s how it’s supposed to work.Good luck!
Forum: Fixing WordPress
In reply to: Photoshop tables spaces in wordpressIn the page that is not ok there are a lot of line breaks inside the links:
<br />
Remove all of them and that page will look fine too!On the page that looks ok there are actually a lot of misplaced paragraphs:
<p>
Obviously they do no harm, but they could, and they should not be there at all.
WP adds paragraphs where there are blank lines, maybe that is what happened? Thus, remove all blank lines before pasting code into the WP-editor.You may stumble on more such problems… Try to learn at least what should NOT be in the code. ??
Forum: Fixing WordPress
In reply to: Photoshop tables spaces in wordpressI forgot to say that this time I really looked into your problem in detail.
Adding the correct DTD removed the white horizontal lines!Additionally, the code is in part a bit ugly, but you seem to be aware of that. The goal here is primarily to make the page look good to the visitor, right? ??
Forum: Fixing WordPress
In reply to: Photoshop tables spaces in wordpressAha, okay…
You should use a correct doc type definition (DTD) at the absolute top of the page.
This is probably generatet by your theme and thus must be changed in the header.php file.Replace this:
<!DOCTYPE html>
With this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Forum: Fixing WordPress
In reply to: Comment notification email not workingI will try all the above again in various ways.
Cleaning the cache is also a good habit, but I prefer alt+cmd+e since your suggestion is for Windows. ??
And I already tried Firefox, Opera and Safari.
Forum: Fixing WordPress
In reply to: Comment notification email not workingI doubt there are any limitations/restrictions since my provider promote and support installing WP. Never the less I will turn to them and ask if they are familiar with these problems.
Thanks!
Forum: Fixing WordPress
In reply to: Comment notification email not workingI changed -Admin => Settings – General
to webmaster@… meaning that it now is the same as admin (not user).Still no notification. ??
Forum: Fixing WordPress
In reply to: Comment notification email not workingThe -Admin => Settings – General
are info@…info@… is also my (user) address, which equals:
-Admin => Settings – Users – your profileBut, the ‘admin’ (creator, with global access, and also me of course) has another address:
webmaster@…Is that a conflict?
Forum: Fixing WordPress
In reply to: Comment notification email not workingGood thinking. But all receiving email addresses are on my domain (schull.se), meaning it is also the same provider.
Also, with the same provider and type of account (different domain) I set up a phpBB forum, and there similar email notifications work fine.
Forum: Fixing WordPress
In reply to: Comment notification email not workingThe three settings are and have been as above.
Deactivating all plugins made no difference.
Additionally switching to “twentyten” did not help either (it is now back to my theme).Good suggestions though. Please continue! ??
Forum: Fixing WordPress
In reply to: Comment notification email not workingI mean:
– I don’t get notification when a comment is made to post!
Keep asking! ??
Forum: Fixing WordPress
In reply to: Photoshop tables spaces in wordpressThe white lines probably occur only in IE but not in FF, Opera or Safari etc. Right?
This is a known problem.
In your CSS document (…/themes/Starkers/style.css) you should add this:table { border-collapse: collapse; }
This will remove the ”white lines” for all tables (as long as nothing else is added that overrules it).
Else you can add/merge what only concerns #Table_01 as below
#Table_01 { border-collapse: collapse; margin: 0 auto; padding: 0; }
Forum: Fixing WordPress
In reply to: Create a "Plan" page on WPThis may solve your problem: Page Templates
Forum: Fixing WordPress
In reply to: Different number of posts per page by categoryYES!
This works perfectly, nice job!
So, this is the exact function I initially asked for. Everything is… nice.
THANK YOU!Now, how can I contribute?
About translation.
It is not meant to be hard coded, I suppose.
On the other hand the concept is not obvious to me.(Sorry about the delay, I’ve been busy.)
Forum: Fixing WordPress
In reply to: Different number of posts per page by categoryTo be even more specific…
In the ‘Posts per category page‘ interface my categories show up both by name (bold, verbose) and by permalink (emphasized, verbose, not by ID#).
Number of posts per page are set accordingly.