aetherfox
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New Theme – NewZenI didn’t check out the theme (can’t right now), but I should really let you know that the chances are you don’t have an “AJAX sidebar”. If it is just nice Javascript effects that people nowadays associate with AJAX, it doesn’t actually make it AJAX. Your comments asynchrounously (mispelt, I know) call a script that posts the comment and then takes the returned XML and displays it formatted as a comment with some Javascript goodness. That’s AJAX.
Sorry to rant on like this, but this has been bugging me for a while.
More to the point – I like the way the screenshot looks simple – I’ll definately check it out. I prefer simpler themes that make customisation easy.
Forum: Themes and Templates
In reply to: Would anyone want a theme like this?I like this. When this is released, depending on how strict your license is, I will be stealing from it :P.
Forum: Plugins
In reply to: Error pops when sended message in wp-ContactFormRead my fix here.
Forum: Fixing WordPress
In reply to: Pages Not WorkingFixed – it seems that WordPress might generate a .htaccess file with glitches from time to time. I regenerated, then manually checked to make sure nothing was wrong.
Forum: Fixing WordPress
In reply to: Pages Not WorkingNope, that doesn’t solve it. The site link is https://avinashv.net. Currently, I’ve only made the archives page, so that’s the only link in the navigation that would work.
Forum: Plugins
In reply to: Movie Database?Can I see what you’ve got so far? I tried this out myself, but I can’t get it to work the way I want.
Forum: Your WordPress
In reply to: Awesome BlogsI sent you my email with my info on it.
Forum: Plugins
In reply to: Movie Database?*bump*
Forum: Plugins
In reply to: Movie Database?That’s a pretty nifty idea. I appreciate the stuff you’ve given there as thoughts, but I am still as of yet not comfortable enough with WordPress and PHP…could you possibly actually just make a sample page or soemthing please? How would you go about not including a topic on the front page, and how would you go about showing all the entires on the category page etc.
Forum: Your WordPress
In reply to: Review my siteThat background is beautiful, I love the way the pattern is subtly shown in the red…
The buttons need to be about 10% of their current size. Resize them so they are exactly the size of the right-most column, and leave the top of the middle column free.
Forum: Your WordPress
In reply to: My Theme v2 (marcnjami.com)Should look the same as Safari is standards compliant.
Forum: Your WordPress
In reply to: Blog Critique – avinash.voraWell I’ve successfully managed to validate all my markup: XHTML 1.0 Strict and CSS. There were some minor server issues but they are all fixed.
Forum: Your WordPress
In reply to: Your WordPress ReviewsCan’t edit but I just fixed that blockquote problem…everything should validate now.
Forum: Installing WordPress
In reply to: Help with LinksWell, you could go into the Write section of your administration panel, and then write a page. All you need in the page is something like this:
<ul>
<?php get_links_list('id'); ?>
</ul>To see more information, check the Codex on template tags, down in the Link Manager section. Using
wp_get_links()
for example, you can customise the output further, but the above code generates a clean, unordered list of the links organised by category.Once you have written the page, call it whatever you like, lets use Links for example. Check the page slug (it should be links if Links was your title), and then you can visit the page using https://yoursite/links/.
Forum: Installing WordPress
In reply to: how to validate XHTMLWell, I quickly looked at the errors.
Errors 1, 2 and 3) are basically because you placed the end tag for the font tag in the wrong place. Put it directly after the text that you want styled — currently you’ve got it after another block of text in some other paragraph tag.
Error 4) You need a to tell the browser that you are starting a list, and need to use a ul tag in order to use li tags after it.
Error 5) h2 is a block level element, I don’t think you can place it in a list. Instead, place it out of the list. If need be, style the one li element to make the text fit your needs.
The Rest) Similar problems. You should do some research on Google into semantically and standards-valid markup. There are many design-oriented blogs where articles on standards and correct markup are posted:
https://www.stopdesign.com
https://www.mezzoblue.com
https://www.456bereastreet.com/
https://www.simplebits.com
etc.Read the comments that the validator gives for the errors. At first, it may seem cryptic, but after a while, those comments are useful. And remember – one little mistake might spawn 4 or 5 errors — on my blog when I started validating my code, I had over 100 errors, but reducing them to nothing took little over 20 minutes.
Hope I helped.