Forum Replies Created

Viewing 12 replies - 1 through 12 (of 12 total)
  • Thread Starter Mike

    (@urbanhillbilly)

    IE9 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.

    Thread Starter Mike

    (@urbanhillbilly)

    I 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!

    Thread Starter Mike

    (@urbanhillbilly)

    I don’t think so, used a fresh file that hasn’t been altered and still showing up.

    Thread Starter Mike

    (@urbanhillbilly)

    That 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.

    Thread Starter Mike

    (@urbanhillbilly)

    In 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">
    Thread Starter Mike

    (@urbanhillbilly)

    That would explain why I couldn’t find it in the CSS – god I need a vacation lol. Thank you for the assist!

    Thread Starter Mike

    (@urbanhillbilly)

    Thanks 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.

    Thread Starter Mike

    (@urbanhillbilly)

    Hi 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-Reloaded
    Thread Starter Mike

    (@urbanhillbilly)

    Forum: Fixing WordPress
    In reply to: Menu Issue
    Thread Starter Mike

    (@urbanhillbilly)

    My 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 Issue
    Thread Starter Mike

    (@urbanhillbilly)

    Yeah 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 Setting
    Thread Starter Mike

    (@urbanhillbilly)

    Thank 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!

Viewing 12 replies - 1 through 12 (of 12 total)