Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • I’m having the same trouble. My contact form looks fine on all browsers except Firefox. Here is the link:


    http://www.kogercreative.com/contact/

    Whenever I try to alter the div.wpcf7, span.wpcf7-form-control-wrap, .wpcf7-text input or .wpcf7-textarea, nothing happens.

    Any ideas?

    Thread Starter k2ster

    (@k2ster)

    So, just so I am absolutely clear here, what exactly do I need to change? Thanks for your help, btw. I really do appreciate it.

    Thread Starter k2ster

    (@k2ster)

    I found this post from about six months ago. But I can’t seem to figure out what parameters I am supposed to target:

    http://wordpress.org/support/topic/navbar-question-custom-theme-design?replies=20

    Thread Starter k2ster

    (@k2ster)

    I have the <?php get_header( ); ?> in both my home and product-page templates. Shouldn’t that be where it goes?

    The menu is housed in an ID div called mainNav. The menu I named in the Menus area of WordPress is called Main Nav Menu. Not sure where you’re going with this. Are you suggesting that my wp_nav_menu array function isn’t quite right? That is what I have been suspecting but I am not sure what is incorrectly written.

    Thread Starter k2ster

    (@k2ster)

    Thanks for your quick response, transom. That wasn’t quite the problem, however. I had my links set up correctly, and I have even used wp_enqueue! I have been doing my homework, but I am a newbie to PHP. Anyway, I almost have it working now, just need to work on those submenus. Turns out what I needed to do to get the darn thing to show was to list the styles between the <nav></nav> in the header.php. Now, my problem is the submenus won’t hide. Here is the code I am using, so see if you can detect any major errors on my part. (I’m sure there are some!)

    <nav id=mainNav>
                    		<div id="p7PMM_1" class="p7PMMh08 p7PMMnoscript">
                   			<ul class="p7PMM">
    				</ul>	
    
                    	<?php wp_nav_menu(array('menu' => 'Main Nav Menu')); ?>
    
                					<div class="p7pmmclearfloat">&nbsp;</div>
                        <!--[if lte IE 6]>
    <style>.p7PMMh08 ul ul li {float:left; clear: both; width: 100%;}.p7PMMh08 {text-align: left;}.p7PMMh08, .p7PMMh08 ul ul a {zoom: 1;}</style>
    <![endif]-->
                        <!--[if IE 5]>
    <style>.p7PMMh08, .p7PMMh08 ul ul a {height: 1%; overflow: visible !important;} .p7PMMh08 {width: 100%;}</style>
    <![endif]-->
                        <!--[if IE 7]>
    <style>.p7PMMh08, .p7PMMh08 a{zoom:1;}.p7PMMh08 ul ul li{float:left;clear:both;width:100%;}</style>
    <![endif]-->
                        <script type="text/javascript">
    <!--
    P7_PMMop('p7PMM_1',1,2,-5,-5,0,1,0,1,0,3,1,1,0,0,0);
    //-->
                        </script>
    
                    		</div>
    
    	 </nav>

    The menu works perfectly in the static html file I used as a template before converting to my custom theme. So I know it’s not the menu code. It must be the “translation” into PHP. Here is the CSS for the menu. If you can tell me what to target, I think I’ll be done!

    /*Menu Outer Wrapper*/
    .p7PMMh08 {
    	width: auto;
    	margin: 0 auto;
    	font-family: Tahoma, Geneva, sans-serif;
    	font-size: inherit;
    	background-color: #FFF;
    	text-align: left;
    	line-height: normal;
    }
    /*Hide Sub-Menu in Design View*/
    .p7PMMh08 ul div {
    	display: none;
    }
    /*
    TOP LEVEL MENU
    */
    .p7PMMh08 ul {
    	margin: 0;
    	padding: 0;
    }
    .p7PMMh08 li {
    	list-style-type: none;
    	float: left;
    	width: 82px;
    }
    /* Hide from IE5 Mac \*/
    .p7PMMh08 li {width: auto;}
    /*End Hiding*/
    
    /*Top Level Links*/
    .p7PMMh08 a {
    	display: block;
    	text-decoration: none;
    	padding: 10px 18px 10px 16px;
    	color: #999 !important;
    	background-color: #FFF;
    	text-align: left;
    }
    .p7PMMh08 a:hover {
    	color: #FDEFBE !important;
    	background-color: #6a2123;
    }
    /*
    Syntax for special classes programatically assigned to first and last links and also LIs
    See user guide for more information
    */
    .p7PMMh08 ul a.pmmfirst {
    	border-left-width: 0;
    }
    .p7PMMh08 ul a.pmmlast {
    	border-right: 0;
    }
    .p7PMMh08 ul li.pmmfirst {
    	border-left: 0;
    }
    .p7PMMh08 ul li.pmmlast {
    	border-right: 0;
    }
    .p7PMMh08 ul ul a.pmmfirst {
    	border-top: 0;
    	border-left-width: 1px;
    }
    .p7PMMh08 ul ul ul a.pmmfirst {
    }
    /*First Sub Level*/
    .p7PMMh08 ul ul {
    	z-index: 10000;
    	background-color: #FDEBBE;
    	width: 200px;
    }
    .p7PMMh08 ul ul li {
    	float: none;
    	background-image: none;
    	background-color: #FDEBBE;
    }
    .p7PMMh08 ul ul a {
    	padding: 4px 16px;
    	color: #6A2123 !important;
    	background-image: none;
    	zoom: 1;
    	background-color: #FDEBBE;
    	text-align: left;
    	overflow: hidden;
    }
    .p7PMMh08 ul ul a:hover {
    	background-color: #6A2123 !important;
    	color: #FDEFBE !important;
    	background-image: none;
    	border-top-color: #52600B;
    	border-right-color: #52600B;
    	border-bottom-color: #52600B;
    	border-left-color: #52600B;
    }
    /*Third Level (Flyouts in horizontal menu)*/
    .p7PMMh08 ul ul ul {
    
    }
    /*
    SPECIAL IMAGE-BASED RULES
    */
    .p7PMMh08 img {
    	border: 0;
    }
    .p7PMMh08 .p7PMM_img {
    	padding: 0;
    	border: 0;
    	background-image: none;
    	background-color: transparent;
    }
    /*
    TRIGGERS and CUURENT MARK RULES
    The Closed state relates to trigger items when their child menus are not showing
    The Open state relates to trigger items when their child menus are showing
    Selectors appended with _left Automatically change arrow position and orientation
    if sub levels are set to fly out to the left
    */
    
    /*Sub Level*/
    .p7PMMh08 ul a.trig_closed, .p7PMMh08 ul a.trig_closed_left {
    	background-image: url(img/pmm_south_dark.gif);
    	background-repeat: no-repeat;
    	background-position: right center;
    }
    .p7PMMh08 ul a.trig_closed_up {
    	background-image: url(img/pmm_north_dark.gif);
    	background-repeat: no-repeat;
    	background-position: right center;
    }
    .p7PMMh08 ul a.trig_open, .p7PMMh08 ul a.trig_open_up {
    	color: #FDEFBE !important;
    	background-color: #6A2123 !important;
    	border-top-color: #52600B;
    	border-right-color: #52600B;
    	border-bottom-color: #52600B;
    	border-left-color: #52600B;
    }
    .p7PMMh08 ul a.trig_open {
    	color: #FFF !important;
    }
    .p7PMMh08 ul ul a.trig_closed {
    	background-image: url(img/pmm_east_medium.gif);
    	background-repeat: no-repeat;
    	background-position: right center;
    }
    .p7PMMh08 ul ul a.trig_closed_left {
    	background-image: url(img/pmm_west_medium.gif);
    	background-repeat: no-repeat;
    	background-position: left center;
    }
    .p7PMMh08 ul ul a.trig_open {
    	color: #FDEFBE !important;
    	background-color: #6A2123 !important;
    	border-top-color: #52600B;
    	border-right-color: #52600B;
    	border-bottom-color: #52600B;
    	border-left-color: #52600B;
    }
    /*The Current Marker (You are here) links*/
    .p7PMMh08 .current_mark {
    	font-weight: bold;
    	color: #000 !important;
    	font-variant: small-caps;
    }
    .p7PMMh08 ul ul .current_mark {
    	color: #FFF !important;
    }
    
    /*
    Utility Rule used for Clearing floats in Horizontal Menus
    */
    .p7pmmclearfloat {
    	clear: both;
    	height: 0;
    	line-height: 0;
    	font-size: 0;
    }
    
    /*
    NO-SCRIPT RULES
    The following rules enable your menu to work even when javascript is disabled in the browser
    */
    .p7PMMh08.p7PMMnoscript {
    	position: relative;
    }
    .p7PMMh08.p7PMMnoscript ul div {
    	position: absolute;
    	display: block;
    	left: -9999px;
    	top: 98%;
    }
    .p7PMMh08.p7PMMnoscript ul ul div {
    	left: -9999px;
    	top: 0px;
    }
    .p7PMMh08.p7PMMnoscript li:hover div {
    	display: block;
    	left: auto;
    }
    .p7PMMh08.p7PMMnoscript li:hover ul div, .p7PMMh08.p7PMMnoscript li:hover ul ul div,
    .p7PMMh08.p7PMMnoscript li:hover ul ul ul div, .p7PMMh08.p7PMMnoscript li:hover ul ul ul ul div,
    .p7PMMh08.p7PMMnoscript li:hover ul ul ul ul ul div {
    	left: -9999px;
    }
    .p7PMMh08.p7PMMnoscript li li:hover div, .p7PMMh08.p7PMMnoscript li li li:hover div,
    .p7PMMh08.p7PMMnoscript li li li li:hover div, .p7PMMh08.p7PMMnoscript li li li li li:hover div,
    .p7PMMh08.p7PMMnoscript li li li li li li:hover div {
    	left: 190px;
    	top: 1em;
    }

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