cameronfrittz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PostsScratch that. I figured it out.
Forum: Fixing WordPress
In reply to: PostsForum: Fixing WordPress
In reply to: Website Works in everything But IENever mind!!! I figured it out!!!!
Forum: Fixing WordPress
In reply to: Website Works in everything But IEOk…. Im having the same problem again… I just cant get my flash fader to show up in IE. Could you kindoff walk me through this so i can do this everytime I add a FlashFader to a wordpress layout. Thanks again for all your help….
This is the website. https://lauriegouldphotography.com
Here is my header.php
Ive tryed everything possible and even sourced the header.php from the last one I did….
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: Website Works in everything But IENevermind! Thanks for all your help!!! I think it turned out pretty good! I love it! Thanks so much!
Forum: Fixing WordPress
In reply to: Website Works in everything But IEHmm. They were already in my home.php
any Idea?
Forum: Fixing WordPress
In reply to: Website Works in everything But IEI got everything fixedup! But then for some reason on Mozilla firefox my search pane isnt showing up in the footer… any idea?
Forum: Fixing WordPress
In reply to: Website Works in everything But IEHI andy!
Thanks again for all the help! I got it fixed to where it dosnt show up but now I cant get it centered in internet explorer!
Here is my current home.php if it helps any. Its perfect in all other browsers minus internet explorer
<?php get_header() ?> <div id="container"> <div id="content" role="main"> <?php $first = 0; //set a counter to help add post classes below ?> <?php while ( have_posts() ) : the_post() ?> <?php $first++; if ($first == 1 && !is_paged() ) { //this is for the first post on the homepage only ?> <?php erdt_epigraph() ?> <div id="post-<?php the_ID() ?>" <?php post_class("first-post") ?>> <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'erudite'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h2> <div class="entry-content"> <?php the_content( __( 'Read More <span class="meta-nav">→</span>', 'erudite' ) ); } else { //subsequent posts on the homepage, all is_paged() posts as well ?> <?php if (!is_paged() ) { $home_pager = "home-post home-post-".$first; } //add home-post classes on front page only ?> <div id="post-<?php the_ID() ?>" <?php post_class($home_pager); ?>> <h3 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'erudite'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h3> <div class="entry-content"> <?php the_excerpt(); ?> <p class="more-link"><a href="<?php the_permalink() ?>" title="<?php printf(__('Keep reading ‘%s’', 'erudite' ), get_the_title() ) ?>"><?php _e('Read More <span class="meta-nav">→</span>', 'erudite' ) ?></a></p> <?php } ?> <hr /> <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'erudite' ) . '&after=</div>') ?> <?php endwhile; ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'erudite' )) ?></div> <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'erudite' )) ?></div> </div> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar() ?> <?php get_footer() ?>
Forum: Fixing WordPress
In reply to: Website Works in everything But IEThanks that worked for everything except internet explorer! So if you could help me with that one last thing I would REALLY Appreciate it… what do you need from me to get help on that?
Forum: Fixing WordPress
In reply to: Website Works in everything But IEHmmmph. that didnt work… here is my erudite.css
[CSS moderated as per the Forum Rules. ]
Forum: Fixing WordPress
In reply to: Website Works in everything But IEOMG! YOUR AMAZING. I LOVE YOU. SOOO MUCH!
Maybe you will be able to help with one last thing. I want to get rid of the meta data on the side of the post on the home page and center the posts…. any idea how I should go about doing this?
heres my main index template
<center><?php include (ABSPATH.'wp-content/flashfader/flashfaderhtml.txt'); ?> </center> <?php get_header() ?> <div id="container"> <div id="content" role="main"> <?php while ( have_posts() ) : the_post() ?> <div id="post-<?php the_ID() ?>" <?php post_class() ?>> <h2 class="entry-title"><a href="<?php the_permalink() ?>" title="<?php printf( __('Permalink to %s', 'erudite'), the_title_attribute('echo=0') ) ?>" rel="bookmark"><?php the_title() ?></a></h2> <div class="entry-content"> <?php the_content( __( 'Read More <span class="meta-nav">→</span>', 'erudite' ) ) ?> <?php wp_link_pages('before=<div class="page-link">' . __( 'Pages:', 'erudite' ) . '&after=</div>') ?> </div> <div class="entry-meta"> <span class="entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php unset($previousday); printf( __( '%1$s – %2$s', 'erudite' ), the_date( '', '', '', false ), get_the_time() ) ?></abbr></span> <span class="meta-sep">|</span> <span class="author vcard"><?php printf( __( 'By %s', 'erudite' ), '<a class="url fn n" href="' . get_author_link( false, $authordata->ID, $authordata->user_nicename ) . '" title="' . sprintf( __( 'View all posts by %s', 'erudite' ), $authordata->display_name ) . '">' . get_the_modified_author() . '</a>' ) ?></span> <span class="meta-sep">|</span> <span class="cat-links"><?php printf( __( 'Posted in %s', 'erudite' ), get_the_category_list(', ') ) ?></span> <span class="meta-sep">|</span> <?php the_tags( __( '<span class="tag-links">Tagged ', 'erudite' ), ", ", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?> <?php edit_post_link( __( 'Edit', 'erudite' ), "\t\t\t\t\t<span class=\"edit-link\">", "</span>\n\t\t\t\t\t<span class=\"meta-sep\">|</span>\n" ) ?> <span class="comments-link"><?php comments_popup_link( __( 'Comments (0)', 'erudite' ), __( 'Comments (1)', 'erudite' ), __( 'Comments (%)', 'erudite' ) ) ?></span> </div> </div><!-- .post --> <?php comments_template() ?> <?php endwhile; ?> <div id="nav-below" class="navigation"> <div class="nav-previous"><?php next_posts_link(__( '<span class="meta-nav">←</span> Older posts', 'erudite' )) ?></div> <div class="nav-next"><?php previous_posts_link(__( 'Newer posts <span class="meta-nav">→</span>', 'erudite' )) ?></div> </div> </div><!-- #content --> </div><!-- #container --> <?php get_sidebar() ?> <?php get_footer() ?>
Forum: Fixing WordPress
In reply to: Website Works in everything But IEHeres my header.php
<!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" <?php language_attributes() ?>> <head profile="https://gmpg.org/xfn/11"> <center><?php include (ABSPATH.'wp-content/flashfader/flashfaderhtml.txt'); ?> </center> <title><?php wp_title( '-', true, 'right' ); echo wp_specialchars( get_bloginfo('name'), 1 ) ?></title> <meta http-equiv="content-type" content="<?php bloginfo('html_type') ?>; charset=<?php bloginfo('charset') ?>" /> <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory') ?>/css/erudite.css" /> <!--[if lte IE 6]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie6.css" type="text/css"> <style type="text/css" media="screen"> .hr {behavior: url(<?php bloginfo('template_directory') ?>/library/iepngfix.htc); } </style> <![endif]--> <!--[if lte IE 7 ]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie7.css" type="text/css"> <![endif]--> <!--[if gte IE 8 ]> <link rel="stylesheet" href="<?php bloginfo('template_directory') ?>/css/ie8.css" type="text/css"> <![endif]--> <script type="text/javascript"> // <![CDATA[ var erdt = { More: '<?php _e("<span>↓</span> Keep Reading", "erudite" ) ?>', Less: '<?php _e("<span>↑</span> Put Away", "erudite" ) ?>', Info: '<?php _e("↓ Further Information", "erudite" ) ?>', MenuShow: '<?php _e("<span>↓</span> Show Menu", "erudite" ) ?>', MenuHide: '<?php _e("<span>↑</span> Hide Menu", "erudite" ) ?>', DisableKeepReading: <?php the_theme_option("erdt_keepreading_disable") ?>, DisableHide: <?php the_theme_option("erdt_hide_disable") ?> }; // ]]> </script> <?php if (is_singular() ) { wp_enqueue_script('comment-reply'); } ?> <?php wp_head() // For plugins ?> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('rss2_url') ?>" title="<?php printf( __( '%s latest posts', 'erudite' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="alternate" type="application/rss+xml" href="<?php bloginfo('comments_rss2_url') ?>" title="<?php printf( __( '%s latest comments', 'erudite' ), wp_specialchars( get_bloginfo('name'), 1 ) ) ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url') ?>" /> </head> <body <?php body_class() ?>> <div id="wrapper" class="hfeed"> <div id="header-wrap"> <div id="header" role="banner"> <h1 id="blog-title"><span><a href="<?php bloginfo('home') ?>/" title="<?php echo wp_specialchars( get_bloginfo('name'), 1 ) ?>" rel="home"><?php bloginfo('name') ?></a></span></h1> <div id="blog-description"><?php bloginfo('description') ?></div> </div><!-- #header --> <div id="access" role="navigation"> <div class="skip-link"><a href="#content" title="<?php _e( 'Skip to content', 'erudite' ) ?>"><?php _e( 'Skip to content', 'erudite' ) ?></a></div> <?php sandbox_globalnav() ?> </div><!-- #access --> </div><!-- #header-wrap -->
Forum: Fixing WordPress
In reply to: Website Works in everything But IEHmmm… How would I move it to the body but still have it at the top of the page?
here is the code for the header
<center><?php include (ABSPATH.'wp-content/flashfader/flashfaderhtml.txt'); ?> </center>
Forum: Fixing WordPress
In reply to: Website Works in everything But IEThis is a pretty urgent problem and im at wits end. If anyone could please help it would be greatly appreciated.
Forum: Fixing WordPress
In reply to: Website Works in everything But IESo what do I do from there?