Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter stephditt

    (@stephditt)

    Thank you Josh,
    Today I learned that the issue I was experiencing was due to a simple plugin I had installed on the site that caused conflict with the java-script Meteor Slides used.
    Deactivate the bad plugin, and bingo… worked perfect.

    Josh I could not thank you enough,
    Thank you

    Thread Starter stephditt

    (@stephditt)

    Hey Josh, I just shot you a facebook message, I did not care to post the site on this public support site. I hope that’s ok. Sorry it took so long, I’ve been busy at work. When they offer OT you gotta jump on it.

    Thread Starter stephditt

    (@stephditt)

    From what I have read the white screen is caused by a floating logo that covers up part of the header slideshow. 🙁 I don’t want to remove the logo, do you know is this is a known issue or even an issue at all?

    Thread Starter stephditt

    (@stephditt)

    I did not edit the .css page, just included it so you could see it. So I am doing it right. I’m getting a white banner, so I’m assuming its a settings issue. I’ll troll the forms and see if I can figure it out. :-S
    Thanks for the help so far

    Thread Starter stephditt

    (@stephditt)

    The issue I’m running into here is
    This is what I have, in the style.css file

    .site-masthead {
    	width:100%;
    	min-width:1200px;
    <body <?php body_class(); ?>>
    	<div id="page" class="hfeed site">
    		<header id="masthead" class="site-header" role="banner">
            <div id="site-header">
            <img src="http://website.com/i/header2.jpg" class="site-masthead"/>
            <div id="site-logo-position">
            <a href="http://website.com"><img src="http://website.com/i/site-logo.png" class="site-logo"/></a>
            </div>

    I’m replacing the header.php code with this…

    <body <?php body_class(); ?>>
    	<div id="page" class="hfeed site">
    		<header id="masthead" class="site-header" role="banner">
            <div id="site-header">
            <?php if ( function_exists( 'meteor_slideshow' ) ) {
    	 if ( is_page( 'about' ) ) {
    		meteor_slideshow( "about", "" );
    	} else if ( is_page( 'contact' ) ) {
    		meteor_slideshow( "contact", "" );
    	} else if ( is_page( 'page3' ) ) {
    		meteor_slideshow( "page3", "" );
    	} else {
    		meteor_slideshow( "default", "" );
    	}
    } ?>
            <div id="site-logo-position">
            <a href="http://website.com"><img src="http://website.com/i/site-logo.png" class="site-logo"/></a>
            </div>

    And no go, Not sure what I’m doing wrong, I’m about ready to toss in the towel. lol Any clue what I’m not doing correct?

    Thread Starter stephditt

    (@stephditt)

    Sorry it took so long to give an update, My desktop took a dive so I’m stuck on my laptop. It can’t handle adobe CS.. So get to work with notepad, and GimpShop.

    Just to clarify…

    if ( is_page( 'webpage title' ) ) {
    		meteor_slideshow( "slide slug name", "" );

    am I correct in my thinking?

    Thread Starter stephditt

    (@stephditt)

    Awesome, I’ll try that out tonight. Thank you, I’ll let you know if I can get it.

    Thread Starter stephditt

    (@stephditt)

    So if I were to have 6ish pages Something like this?

    <?php if ( function_exists( 'meteor_slideshow' ) ) {
    	 if ( is_page( 'about' ) ) {
    		meteor_slideshow( "about", "" );
    	} else {
    		meteor_slideshow( "default", "" );
    	}
            if ( is_page( 'contact' ) ) {
    		meteor_slideshow( "contact", "" );
    	} else {
    		meteor_slideshow( "default", "" );
    	}
            if ( is_page( 'page3' ) ) {
    		meteor_slideshow( "page3", "" );
    	} else {
    		meteor_slideshow( "default", "" );
    	}
    
    } ?>

    And so on, rather then the code that I have in the header already from inside the header.php file?

    Thread Starter stephditt

    (@stephditt)

    FYI I used the hard-code option inside the template header.php file to add my slide show header using Meteor Slides

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