• Internet Explorer 7 and 6 are killing me.

    https://www.chefdato.com

    here i have several problems and please help. This thing is driving me nuts!

    1.
    google calendar widget was showing only titles yesterday, now it’s showing part of description too. I did not do anything! I don’t need description. Need only titles. Tried almost everything and no luck.

    2. https://www.chefdato.com/menu/

    looks Ok on FF On IE it’s not

    3. https://www.chefdato.com/direction/

    Same thing here. It’s looks horrible on IE.

    Is there plugin like firebug for IE so i can mess little and might find some solution?

    P.S. Also give some feedback about site.

    Many thanks

Viewing 9 replies - 1 through 9 (of 9 total)
  • Is there plugin like firebug for IE so i can mess little and might find some solution?

    IE Dev Toolbar: https://www.microsoft.com/downloads/details.aspx?familyid=e59c3964-672d-4511-bb3e-2d5e1db91038&displaylang=en

    I haven’t checked the site yet, just wanted to share that link. Have you validated your pages yet? That can often make a big difference as to how browsers “see” things.

    I’m seeing variation in validity. Home page checks out fine but some of the underlying pages have problems. Including content pasted directly from Word. Sort that out and some of your problems will probably disappear.

    https://www.chefdato.com/menu/, for example, has Word formatting.

    Thread Starter hot8

    (@hot8)

    more i try to validate it more errors i get. Yesterday at one point it was html valid but still pages were same looking.

    now i have 90 errors.

    Hired 5 people for this project logo designers, layout designers, coders and still having problems.

    i had DMSguestbook plugin running ok on it. Then update came out. Updated and it disappeared. Had to deactivate widget and whole plugin.

    Thread Starter hot8

    (@hot8)

    to esmi

    thanks a lot. I did not knew it is problem to paste from word. I have to go now and will work on it when come beck.

    Thanks again

    Thread Starter hot8

    (@hot8)

    Alright….

    there is program “StripMail” i copied whole my text in it and cleaned up.

    Now everything look fine and HTML/CSS are valid.

    Only thing i need fix is Google maps page on IE and get rid of descriptions from upcoming events (on sidebar). Any suggestion how to make to show only titles?
    https://www.chefdato.com/direction/

    Sorry to asking so many questions and Thanks for your time

    “StripMail” sounds interesting. So you have a url for it?

    with regard to the events plugin configuration, have a look at https://code.google.com/p/wpng-calendar/

    Thread Starter hot8

    (@hot8)

    To: esmi

    Url for “stripmail”

    https://www.stripmail.net/

    ……………

    I am confused about how to find element in PHP file which is responsible for generating data. In my case i want to remove from google calendar widget two elements. for instance:

    From here:
    Thursday, 30 April 2009
    * International Day * Korea
    remove this:
    9:00 AM by David Kadagishvili
    Korean cuisine as a national cuisine known today has evolved through centuries o

    I went over this code and removed each element at time. Spent hours on it and still could not find solution.

    /*--------------------------------------------------------------------
    		    Widget Functions
    		  --------------------------------------------------------------------*/
    
      function widgetWPNGCalendarInit() {
    
    			if(!function_exists('register_sidebar_widget')) { return; }
    			function widgetWPNGCalendar($args) {
    				extract($args);
    
    				if(!$options = get_option('wpng_cal_widget_options')) {
    					$options = array('wpng_cal_widget_list_size' => 5, 'wpng_cal_widget_title' => 'Upcoming Events');
    				}
    				echo $before_widget . $before_title . $options['wpng_cal_widget_title'] . $after_title;
    				?>
    				<div id="wpng-cal-widget-events" style="display:none;"></div>
    				<div id="wpng-cal-load-widget" class="wpng-cal-loading">
    					<img class="wpng-cal-image" src='<?php bloginfo('wpurl') ?>/wp-content/plugins/wpng-calendar/images/loading_large.gif' alt="Loading" />
    				</div>
    				<div>
        <script type="text/javascript">
    					widgetListSize = <?php echo($options['wpng_cal_widget_list_size']) ?>;
    					addLoadEvent(loadCalendarWidget);
    				</script>
    				</div>
    				<?php
    				echo $after_widget;
    			}
    
    			function widgetWPNGCalendarOptions()
    			{
    				if(!$options = get_option('wpng_cal_widget_options')) {
    					$options = array('wpng_cal_widget_list_size' => 5, 'wpng_cal_widget_title' => 'Upcoming Events');
    				}
    
    				if($_POST['updateWPNGWidgetSettings']) {
    					$options = array('wpng_cal_widget_list_size' => $_POST['evnt_cnt'], 'wpng_cal_widget_title' => $_POST['evnt_list_title']);
    					update_option('wpng_cal_widget_options', $options);
    				}
    				echo '<p>Sidebar title:<input type="text" name="evnt_list_title" value="'.$options['wpng_cal_widget_title'].'" id="evnt_list_title" /></p>';
    
    				echo '<p>Number of events to show:<input type="text" name="evnt_cnt" value="'.$options['wpng_cal_widget_list_size'].'" id="evnt_cnt" /></p>';
    
    				echo '<input type="hidden" id="updateWPNGWidgetSettings" name="updateWPNGWidgetSettings" value="1" />';
    			}
    
    			register_sidebar_widget('WPNG Calendar','widgetWPNGCalendar');
    			register_widget_control('WPNG Calendar','widgetWPNGCalendarOptions', 200, 200);
    		}
    	}
    }

    which elements are responsible for it?

    In firebug how do you find javascript responsible for generating data? I know how to find css, html and edit them. My problem is figuring out which javascript is in charge for generating element.

    I wish there are more tutorials about firebug. Video tutorials ??

    Just visited the Menu page and it looks like you solved the problem. Did you figure out where to make the changes in the events widget?

    Thread Starter hot8

    (@hot8)

    No i did not. I had older version plugin files and uploaded it. Now i get lot of css errors but as a result at least it looks ok.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘IE 7 peace of……!!!!!! Need help with it’ is closed to new replies.