digitalnature
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Browser Compatibility — Works in IE, not Firefox/Safariupdate to Arclite 1.4 and problems should go away.
In the previous versions, search widget in the sidebar was causing the page to break.Forum: Fixing WordPress
In reply to: Widget container HTML (and missing titles)found a solution (for the Arclite theme), using javascript to modify the widget html output locally. Not very elegant, but it’s the only way π
jQuery('.widgettitle').each(function(){ jQuery(this).prependTo(this.parentNode); });This will move the title element where you want (if exists), so you don’t need to add anything ‘after_title’. In the example it will be moved in the parent element.
Forum: Fixing WordPress
In reply to: Favicon supported in this theme?just add this in header.php, somewhere in the <head> section:
<link rel="shortcut icon" href="<?php bloginfo('template_directory'); ?>/favicon.ico" />
then place your favicon in the theme dirI’ll also add this in the next theme update, so you don’t have to change theme files.
Forum: Fixing WordPress
In reply to: Default Tagline Optionsin Fusion the tagline is located in header.php:
<?php bloginfo('description'); ?>you shouldn’t alter the code if you only want the text size changed. Use the theme custom css option instead:
#topnav{ font-size: 140%; }Forum: Fixing WordPress
In reply to: Internet Explorer hates this themehe only needs to remove
<meta name=”verify-v1″ content=”…” /> from the top of the page source.
(or move it after <head)>).because of that line IE sees the site as HTML, not XHTML and renders it differently…
Forum: Themes and Templates
In reply to: dropdown menu issues headerthis was fixed in the last update. it was a z-index issue. get 2.7b from the project page until 2.7 is released.
I didn’t think that many people use two tab rows π
Forum: Themes and Templates
In reply to: Fusion sidebar not working in older browsers and OSsthis has been discussed a lot on the project page.
You have unclosed HTML tags in one or more of your post summaries, probably because you inserted the “read more” link before a paragraph ends.check each one of the posts on the page that the sidebar doesnt show and make sure the <!– read more –> code appears after a paragraph is closed (</p>)…
Forum: Your WordPress
In reply to: anyone need css to fix the navbar in fusion theme?I’m curious of what IE 6 bug the post starter is talking about, since I fixed all possible IE rendering bugs on a default install of worpdress/ Fusion…
Forum: Plugins
In reply to: Compatibility with IntenseDebate plugin?yes it is π
Forum: Requests and Feedback
In reply to: <Pre> Tags in IE7 are not preserviing linebreaksremove from style.css:
pre{ white-space: normal; /* why pre? */ }Forum: Themes and Templates
In reply to: Fusion sidebar not working in older browsers and OSsit’s not really a bug, but more like a problem with one of your sidebar widgets with IE, which has content that exceeds the sidebar’s fixed width (maybe “other places”?).
normally that wouldn’t be a problem in a normal browser, but since IE 6 is pure crap, it expands the sidebar width even it is set to fixed.
A solution to this is to make the sidebar column wider, I’ve posted a comment on my “Play” page on how to do this. Another solution is to increase the margin-left property for the #sidebar element in ie6.css. Or you can just remove the widget that’s causing the problem π