Mike
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Internet Explorer Site TrainwreckIE9 and up looks great, everything is lined up like it’s supposed to. IE7 and 8 looks like it should without the HTML5 elements, and under that looks like junk as expected.
Forum: Fixing WordPress
In reply to: Internet Explorer Site TrainwreckI literally just finished the fix. Believe it or not, the code was in the basically useless index.php file (not the ones included in a core WordPress installation) that replaces the place holding index.htm(l) file on a brand new hosting site. Removed that nasty code and all was well!
Forum: Fixing WordPress
In reply to: Internet Explorer Site TrainwreckI don’t think so, used a fresh file that hasn’t been altered and still showing up.
Forum: Fixing WordPress
In reply to: Internet Explorer Site TrainwreckThat was a redirection script for a potential mobile site, I think it was the JS Redirection plugin – that plugin has been long removed, can’t believe it’s still in there. Been going through each php file, can’t find the call for the javascript anywhere.
Forum: Fixing WordPress
In reply to: Internet Explorer Site TrainwreckIn header.php, I defined the following doctype:
<!DOCTYPE html>
<html <?php language_attributes(); ?>>Even tried changing it around to define a different doctype, no help.
Here’s the entire header.php file:
<!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta charset="<?php bloginfo('charset') ?>" /> <title><?php wp_title('|', true, 'right'); bloginfo('name'); ?></title> <meta name="viewport" content="initial-scale = 1.0, maximum-scale = 1.0, user-scalable = no, width = device-width"> <!--[if lt IE 9]><script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]--> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" media="screen" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php remove_action('wp_head', 'wp_generator'); if (is_singular() && get_option('thread_comments')) { wp_enqueue_script('comment-reply'); } wp_head(); ?> </head> <body <?php body_class(); ?>> <div id="main"> <?php if(theme_has_layout_part("header")) : ?> <header class="clearfix header<?php echo (theme_get_option('theme_header_clickable') ? ' clickable' : ''); ?>"><?php get_sidebar('header'); ?></header> <?php endif; ?> <nav class="nav clearfix"> <?php echo theme_get_menu(array( 'source' => theme_get_option('theme_menu_source'), 'depth' => theme_get_option('theme_menu_depth'), 'menu' => 'primary-menu', 'class' => 'hmenu' ) ); get_sidebar('nav'); ?> </nav> <div class="sheet clearfix"> <div class="layout-wrapper clearfix"> <div class="content-layout"> <div class="content-layout-row"> <div class="layout-cell content clearfix">
Forum: Fixing WordPress
In reply to: Images not centeringThat would explain why I couldn’t find it in the CSS – god I need a vacation lol. Thank you for the assist!
Forum: Fixing WordPress
In reply to: Recent Posts page not centeredThanks for the reply Christine, went through the index.php file – couldn’t find anything. As a last ditch effort, went through the CSS file again (first place I checked but must have overlooked it) and found an ill placed float. Problem solved.
Forum: Plugins
In reply to: [WP-Table Reloaded] [Plugin: WP-Table Reloaded] Linking Entire CellsHi Tobias, thank you for the reply…about what I figured with the linking and making things ugly with JavaScript, just not worth it. I was hoping I missed something in school.
With regards to the cell, I agree…it does seem kind of pointless, but for the sake of ease on the client side, this was the best option at the time. All of the formatting is done for them within the CSS, all they have to do is type, enter, type, save. They don’t have a lot of time to make updates, so this was a quick and simple solution for them.
Forum: Plugins
In reply to: WP Tables-ReloadedOops, correction on the pages….
https://cool-quotes.org/nomnom/menu/
https://cool-quotes.org/nomnom/menu-2/Forum: Fixing WordPress
In reply to: Menu IssueMy original thought was that maybe the menu was wrapping around the featured image. In the original Twenty-Eleven theme, the menu bar is below the image rather then above it.
Forum: Fixing WordPress
In reply to: Menu IssueYeah I loaded the original and everything menu related was exactly where I needed it, the ‘Blog’ page loaded under ‘How It Works’. It’s definitely pinned down to some setting within the reworked theme.
Forum: Fixing WordPress
In reply to: Image SettingThank you Amy, that definitely did the trick. I removed the 12 pixel margin from the post-content class as well and it’s exactly as I needed it. Thank you so much!