hath
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Right Sidebar out of line in IEHello i just want to update that i got my problem sorted, i found an answer in this thread https://www.ads-software.com/support/topic/156119?replies=9#post-765341 while trying to sort a seperate problem, second post from bottom in that thread.
Thanks ??
Forum: Fixing WordPress
In reply to: Strange character inserted messing up IEHello, i know this thread is 3 months old but i want to say thank you, basially i did what is mentioned in the last post here UPDATE: Re-saved all php files using notepad++ as UTF-8 “without BOM” and all is well.
And it has sorted 2 problems for me, i wasn’t actually getting that strange character on pages, did in WP admin though, i was though experiencing the often mentioned functions.php errors, i also had this problem with my first theme that i had created.
And i had saved mine in UTF-8, so i resaved as you did andyfarmerboy to UTF-8 without BOM and it sorted that but also its sorted a sidebar problem in IE where one sidebar was stretching and a sidebar next to it was pushed out of line, slightly wider than the footer.
From now on instead of notepad il use Notepad++ and save as UTF-8 without BOM.
Forum: Themes and Templates
In reply to: Right Sidebar out of line in IEIm already using a faux column, thats what the image is in wrapper CSS.
Forum: Themes and Templates
In reply to: Right Sidebar out of line in IEForum: Themes and Templates
In reply to: Right Sidebar out of line in IEForum: Themes and Templates
In reply to: Right Sidebar out of line in IEHi jonimueller, i apologise for no URL, im working locally so have not got the theme online yet, i did post image links but they didn’t show up, il try again posting the images.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head profile="https://gmpg.org/xfn/11"> <title><?php bloginfo('name'); ?><?php wp_title(); ?></title> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please --> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_get_archives('type=monthly&format=link'); ?> <?php //comments_popup_script(); // off by default ?> <?php wp_head(); ?> </head> <body> <div id="wrapper"> <div id="header" onclick="location.href='<?php echo get_settings('home'); ?>';" style="cursor: pointer;"> </div> <div id="menu"> <ul> <?php wp_list_pages('depth=1&title_li='); ?> </ul> </div> <div id="container"> <?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entry"> <?php the_content(); ?> <p class="postmetadata"> <?php _e('Filed under:'); ?> <?php the_category(', ') ?> <?php _e('by'); ?> <?php the_author(); ?><br /> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?> <?php edit_post_link('Edit', ' | ', ''); ?> Published <?php the_date('F j, Y'); ?> </p> </div> </div> <?php endwhile; ?> <div class="navigation"> <?php posts_nav_link(); ?> </div> <?php else : ?> <div class="post"> <h2><?php _e('Not Found'); ?></h2> </div> <?php endif; ?> </div> <div class="leftsidebar"> <ul> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('leftsidebar') ) : ?> <li id="search"> <?php include(TEMPLATEPATH . '/searchform.php'); ?> </li> <li id="calendar"><h2><?php _e('Calendar'); ?></h2> <?php get_calendar(); ?> </li> <?php wp_list_pages('depth=3&title_li=<h2>Pages</h2>'); ?> <li><h2><?php _e('Categories'); ?></h2> <ul> <?php wp_list_cats('sort_column=name&optioncount=1&hierarchical=0'); ?> </ul> </li> <li><h2><?php _e('Archives'); ?></h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php get_links_list(); ?> <li><h2><?php _e('Meta'); ?></h2> <ul> <?php wp_register(); ?> <li><?php wp_loginout(); ?></li> <?php wp_meta(); ?> </ul> </li> <?php endif; ?> </ul> </div> <div class="rightsidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('rightsidebar') ) : ?><?php endif; ?> this is tester text this is tester text this is tester text this is tester text </div> <div id="footer"> <p> Copyright © 2008 <?php bloginfo('name'); ?> </p> </div> </div> </body> </html>
Note: I have included links to images, just incase they still dont show up.