estjohn
Forum Replies Created
-
Forum: Themes and Templates
In reply to: FireFox works with thisyou can also try validateing them at w3c and tweak them.. sometimes its not the theme, you have to adjust plugin code for a theme since all themes are built differently..
Forum: Fixing WordPress
In reply to: Article: The best WordPress SEO possibleIve got a couple of sections on it with plugins for SEO tips and SEO in general if it would help you any.. I know Ive been trying to optimize mine as well.
Good tips on your page!http://www.aleeya.net/category/wordpress/seo/
http://www.aleeya.net/category/seo-and-sef/welcome to use some of that if itll help any..
Forum: Fixing WordPress
In reply to: centering images on pagesthe code for the webring might not be valid.. so you might have to tweak it. you can revalidate with source so you can see where it is talking about..
Forum: Fixing WordPress
In reply to: IE super slow loadingload time is same for me in ie or ff…
Forum: Plugins
In reply to: WordPress.com API for Akismet pluginRogerUsh and Whereiworksucks – You have to get the invite in the email (it can take a few days to get an invite from wordpress.com, it is not instant), set up a wordpress.com blog there on wordpress.com. Then you have a dashboard link.
As moshu said, this is a wordpress.com blog and this has nothing to do with wordpress.org
Forum: Fixing WordPress
In reply to: need help figuring out image file pathdid you try /images ?
Forum: Fixing WordPress
In reply to: Centered/Clickable Headerjust remove the
/* */symbols and not thie things in between themso
/*
#headerimg { background: url('http://blogsfornatalee.com/wp-content/themes/default/images/personalheader.jpg') no-repeat top;}
*/becomes
#headerimg { background: url('http://blogsfornatalee.com/wp-content/themes/default/images/personalheader.jpg') no-repeat top;}is that in your header.php file?
Forum: Your WordPress
In reply to: XHTML Strict!! (very excited) but mysterious css borderok.. but are you trying to get it with no border and to look the same in all browsers?
I had to do it by using border: none; in my style.css
I was just trying to exaplin why the ones that had them did..
I understand it is different for all browsers.. I have flock, opera, ie, ff, mozilla, netscape in windows. what also looks the same in windows can look even more differnt in linux or on the mac too.. so i try to check with all
Forum: Your WordPress
In reply to: XHTML Strict!! (very excited) but mysterious css borderok in the source you have
<p id="firefoxlink" style="text-align: center; border: 0;"><a href="http://spreadfirefox.com/community/?q=affiliates&id=2490&t=1" title="WordPress recommends the open-source Firefox browser"><img style="border: 0;" src="http://www.themainbrace.com/blog/wp-images/getfirefox.png" alt="Get Firefox" /></a>
and on the second one you have
<a href="http://www.getfirefox.com"><img src="http://www.themainbrace.com/blog/wp-images/firefox0.png" width="80" height="15" alt="a standards complient browser" /></a>the one that has the border does not have the style border=0 in the link.
Forum: Your WordPress
In reply to: XHTML Strict!! (very excited) but mysterious css borderimg style=”border: 0;” needs to be added
you have that on some of the images in the buttons like get firefox but not the ones with borders
oops I was editing my post and didnt see the one above me till after i posted.Forum: Fixing WordPress
In reply to: How to keep “Welcome” post at top of home page?to keep tje welcome post on there, do a search for a plugin called adhesive.. it makes it sticky.. there should be another one that “slips” it off the font page.. though I could neer get it to work..
.. just my 2 cents
Forum: Plugins
In reply to: WordPress.com API for Akismet pluginWhere is my WordPress.com API key?
October 19th, 2005Every user of WordPress.com gets a unique API key they can use to access a number of services. This key should be as kept as secret as your password � don’t share it with anybody.
To find your key go to your dashboard and then click on “Profile� (or “My Account�) and you should see a sentence that says “Your WordPress.com API key is:� followed by a string of 12 letters and numbers. There you have it! You can copy and paste that string to any place where it is asked for by a service you want to use.
Forum: Fixing WordPress
In reply to: Centered/Clickable Headerbut looking at the source i still see this line commented out
‘ /*
#headerimg { background: url(‘http://blogsfornatalee.com/wp-content/themes/default/images/personalheader.jpg’) no-repeat top;}
*/’so remove the
/* */Forum: Everything else WordPress
In reply to: Fonts that adjust spacingYour welcome 🙂
There are actualy two types of fonts as far as character spacing in the actual font goes.. You have monospace fonts where each character is the same size in width (so a word with 5 letters is the same length no matter what 5 leters you use) vs. proportional fonts where the width for instance in the letter I is smaller than the width in the letter O or W.But if I am understanding your question correctly, you are talking about the alignment of the words in the paragraph itself.. so the left and right side margins are a straight line making a “box” kinda like you see in newspapers and magazine articles..
Forum: Everything else WordPress
In reply to: Fonts that adjust spacingthat would be the justify attribute and not the font itself
text-align: justify;
in css