metabold
Forum Replies Created
-
Forum: Your WordPress
In reply to: First design for WP softwareActually my title may be misleading. This design is not for the free or public theme collection. It’s a private design although I may release it after I redesign which won’t be for a while obviously.
Forum: Your WordPress
In reply to: My first weblogIt’s looks nice. I like your photographs. It looks good in Firefox and Safari accept for the background on your photos page.
You have several easy to fix problems:
Your gallery link is bad: https://www.nikynik.com/weblog\galleryIs should be this: Your gallery link is bad: https://www.nikynik.com/weblog/gallery/
When you have a link:
https://www.nikynik.com/weblogThe server looks for a file called:
weblog.html weblog.htm or weblog.php which dosn’t work.When you add / after weblog :
https://www.nikynik.com/weblog/
You server looks for index.php, index.html and so on. You need to use this format.The following is probably the reason the person above could not access your site.
on all link that go to a directory index you should link your home page you ned to add a / after the directoy name.
You link above should be: https://www.nikynik.com/weblog/
You using IE so it allows a lot of sloppy coding but if someone is using Firefox, Mozzilla or Safai you links will not work reliably.
Good luck.
Forum: Themes and Templates
In reply to: IE 6 BugsI don’t have my PC on right now since it’s a laptop and next to my wife who is sleeping. I’ll explain to you how to fix your problem even though I can’t see it right now. I develop on a Mac so 99% if it works in Firefox it works in Safari. IE 6.0 and all IE versions use a different box model than every other browser.
Usually what happens is if you specify margin or padding in Firefox at say 2px, IE will see it as 4px, so if you using exact measurements for your layout and you have a width of 402px and you have a left column that’s 400px and a right column that’s 2px. IE will force the right column under. If you have padding on both left and right columns you’ll have to adjust for that. But in any event here’s the code:
margin: 0 !important; /* firefox/gecko/safari value */
margin/**/:/**/ 0; /* IE 6x value */
The commenting in the second margin is only understood by IE 6.x all other browsers will ignore it. This commenting feature will work with any property. But it meant to be used with width, height, margin, padding.
I’ll try to look at the site tomorrow and find the problem. It shouldn’t take long to find it. Fixing it may take a while though.
I’ve just installed WP tonight so I was looking though the boards. It looks like it’s easy to built your shell externally get it to work than break it down in to the include files.
Good luck.