04/06/2013, 13:10
|
| | Fecha de Ingreso: enero-2013
Mensajes: 38
Antigüedad: 11 años, 10 meses Puntos: 0 | |
Respuesta: No Funciona Ningun Slider - Error de Tema Ya agrege el codigo que me diste y aun nada.. mira este es mi header.php
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<title><?php if (is_home () ) { echo bloginfo('name'); echo ' | '; bloginfo('description'); }
elseif ( is_category() ) { single_cat_title(); echo ' | ' ; echo bloginfo('name'); }
elseif (is_single() || is_page()) { single_post_title(); echo ' | ' ; echo bloginfo('name'); }
else { wp_title(' | ',true); } ?></title>
<?php wp_head(); ?>
<script type='text/javascript'>
$(document).ready(function() {
$("#menu ul").css({display: "none"});
$("#menu li").hover(function(){
$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(300);
},function(){
$(this).find('ul:first').css({visibility: "hidden"});
});
});
</script>
<link rel="profile" href="http://gmpg.org/xfn/11" />
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
<link rel="stylesheet" type="text/css" media="all" href="http://paramorehonduras.celebwire.org/imag/prueba.css" />
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<center>
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('header_widget') ) : ?>;
<?php endif; ?>
<div id="container">
<center>
<div id="cssmenu">
<?php
wp_nav_menu(array(
'menu' => 'Main Menu',
'container_id' => 'cssmenu',
'walker' => new CSS_Menu_Maker_Walker()
));
?>
</div>
</center>
|