nice work, but menu works NOT on internet explorer for mac!

i will fix this in the CSS-style, later!
no time at this moment!
Sorry to say it but I feel IE on Mac is dead. People shouldn't use it. That's my feeling. Seems to be the same for MS as they haven't updated IE for Mac in years. I think I may have the same problem in IE Mac as I do for Opera Mac so when I have to to fix the CSS it may take care of both.paschulke wrote:menu works NOT on internet explorer for mac!
I'll post a step-by-step guide to what I did later tonight.marco wrote:Could you please explain this a bit more, what files are edited what replacement tag is used, and where is the code above inserted?
Code: Select all
// BEGIN phpWCMS template integration
ob_start();
// END phpWCMS template integration
Code: Select all
// footer
pagefooter();
Code: Select all
// BEGIN phpWCMS template integration
$cmstmpl['calendar'] = ob_get_contents();
ob_end_clean();
$cmstmpl['all'] = @file_get_contents('http://www.lbym.org/calview.phtml');
$cmstmpl['all'] = preg_replace("/href\ *\=\ *\"/","href=\"/", $cmstmpl['all']);
$cmstmpl['all'] = str_replace('href="//', 'href="/', $cmstmpl['all']);
$cmstmpl['all'] = preg_replace("/href\ *\=\ *\'/","href='/", $cmstmpl['all']);
$cmstmpl['all'] = str_replace("href='//", "href='/", $cmstmpl['all']);
$cmstmpl['all'] = str_replace('href="/javascript:', 'href="javascript:', $cmstmpl['all']);
$cmstmpl['all'] = str_replace('href="/http:', 'href="http:', $cmstmpl['all']);
$cmstmpl['all'] = str_replace('<!-- EXTCAL_CSS -->', '<link rel="stylesheet" type="text/css" href="/phpwcms_template/inc_css/calendar.css">', $cmstmpl['all']);
$cmstmpl['all'] = str_replace('{EXTCAL}', $cmstmpl['calendar'], $cmstmpl['all']);
echo $cmstmpl['all'];
// END phpWCMS template integration
Code: Select all
<!-- EXTCAL_CSS -->
Code: Select all
{EXTCAL}
Code: Select all
/****************** menu functionality******************/
ul.dropdown { /* complete lists */
font-family: Arial,Verdana, Helvetica, sans-serif;
font-size: 11px;
a:link: #000000;
padding: 0;
margin: 0px 0 0px 143px;
list-style: none;
text-align: center;
height: 6px;
}
ul.dropdown li { /* list items */
float: left;
position: relative;
width: 125px;
/*border-bottom: 1px solid #E2E2E2;*/
}
ul.dropdown li ul { /* second-level lists */
display: none;
position: absolute;
top: 24px;
left: 0;
margin: 0;
padding: 0;
background-color: White;
list-style: none;
border-top: 1px solid #BBBBBB;
z-index: 99;
}
ul.dropdown li>ul {
top: auto;
left: auto;
}
ul.dropdown ul * ul {
left:98%;
top:0;
width:100%;
}
ul.dropdown li ul li {
border: none;
list-style: none;
padding: 0;
margin: 0;
width: 125px;
border-left: 1px solid #BBBBBB;
border-right: 1px solid #BBBBBB;
border-bottom: 1px solid #BBBBBB;
}
ul.dropdown li:hover ul, ul.dropdown li.over ul { /* lists nested under hovered list items */
display: block;
}
ul.dropdown span {
visibility: hidden;
}
ul.dropdown a {
text-decoration: none;
color: Black;
margin: 0;
padding: 5px 0px;
display: block;
width: 125px;
background-color: #EBEBEB;
font-weight: normal;
}
ul.dropdown a:hover {
background-color: #FFFFFF;
color: #000000;
text-decoration: none;
}
ul.dropdown a:link {
color: #000000;
text-decoration: none;
}
ul.dropdown a:visited {
color: #000000;
text-decoration: none;
}
ul.dropdown a:active {
color: #000000;
text-decoration: none;
}
ul.dropdown ul * ul
{
left:98%;
top:0;
width:100%;
}
Code: Select all
<?php
// -------------------------------------------------------------
if( ! ( strpos($content["all"],'{DROPDOWN')===false ) ) {
$content["all"] = str_replace('{DROPDOWN}', '{DROPDOWN:0}', $content["all"]);
$replace = 'build_dhtmlmenu( "$1","id=nav", 0);';
$content["all"] = preg_replace('/\{DROPDOWN:(\d+)\}/e', $replace, $content["all"]);
}
// -------------------------------------------------------------
?>