update diego
This commit is contained in:
+35
-4
@@ -20,17 +20,48 @@ register_nav_menus(array(
|
||||
|
||||
|
||||
function wpt_register_js() {
|
||||
wp_register_script('jquery.bootstrap.min', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), 'null', true );
|
||||
wp_enqueue_script('jquery.bootstrap.min');
|
||||
wp_enqueue_script("jquery", get_stylesheet_directory_uri().'jquery.min.js');
|
||||
wp_enqueue_script("bootstrap-hover-dropdown", get_stylesheet_directory_uri().'bootstrap-hover-dropdown.min.js');
|
||||
wp_enqueue_script("bootstrap", get_stylesheet_directory_uri().'bootstrap.min.js');
|
||||
wp_enqueue_script("jcarousel", get_stylesheet_directory_uri().'jquery.jcarousel.min.js');
|
||||
wp_enqueue_script("bryan-body2", get_stylesheet_directory_uri().'bryan-body2.js');
|
||||
}
|
||||
|
||||
add_action( 'init', 'wpt_register_js' );
|
||||
add_action("wp_enqueue_script", "jquery");
|
||||
add_action("wp_enqueue_script", "bootstrap-hover-dropdown");
|
||||
add_action("wp_enqueue_script", "bootstrap");
|
||||
add_action("wp_enqueue_script", "jcarousel");
|
||||
add_action("wp_enqueue_script", "bryan-body2");
|
||||
|
||||
function wpt_register_css() {
|
||||
wp_register_style( 'bootstrap.min', get_template_directory_uri() . '/css/bootstrap.min.css' );
|
||||
wp_enqueue_style( 'bootstrap.min' );
|
||||
wp_register_style( 'style_footer', get_template_directory_uri() . '/css/style_footer.css' );
|
||||
wp_enqueue_style( 'style_footer' );
|
||||
wp_register_style( 'style_body2', get_template_directory_uri() . '/css/style_body2.css' );
|
||||
wp_enqueue_style( 'style_body2' );
|
||||
wp_register_style( 'style_body4', get_template_directory_uri() . '/css/style_body4.css' );
|
||||
wp_enqueue_style( 'style_body4' );
|
||||
wp_register_style( 'styles-navbar-principal', get_template_directory_uri() . '/css/styles-navbar-principal.css' );
|
||||
wp_enqueue_style( 'styles-navbar-principal' );
|
||||
wp_register_style( 'styles-header', get_template_directory_uri() . '/css/styles-header.css' );
|
||||
wp_enqueue_style( 'styles-header' );
|
||||
wp_register_style( 'styles_slider', get_template_directory_uri() . '/css/styles_slider.css' );
|
||||
wp_enqueue_style( 'styles_slider' );
|
||||
wp_register_style( 'styles-navbar-toggle', get_template_directory_uri() . '/css/styles-navbar-toggle.css' );
|
||||
wp_enqueue_style( 'styles-navbar-toggle' );
|
||||
|
||||
}
|
||||
add_action( 'wp_enqueue_scripts', 'wpt_register_css' );
|
||||
add_action("wp_enqueue_script", "bootstrap.min");
|
||||
add_action("wp_enqueue_script", "style_footer");
|
||||
add_action("wp_enqueue_script", "style_body2");
|
||||
add_action("wp_enqueue_script", "style_body4");
|
||||
add_action("wp_enqueue_script", "style-navbar-principal");
|
||||
add_action("wp_enqueue_script", "styles-header");
|
||||
add_action("wp_enqueue_script", "styles_slider");
|
||||
add_action("wp_enqueue_script", "styles-navbar-toggle");
|
||||
|
||||
|
||||
|
||||
|
||||
// Register custom navigation walker
|
||||
|
||||
@@ -4,74 +4,4 @@ Description: Portal Editorial page
|
||||
version:1.0.0.0
|
||||
Template: wp-portal-editorial
|
||||
Author: CIDWA
|
||||
*/
|
||||
|
||||
|
||||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.pie{
|
||||
background-color: black;
|
||||
color: white;
|
||||
}
|
||||
|
||||
/*ul li{
|
||||
color: #909090;
|
||||
margin-left: 5%;
|
||||
margin-top: 1em;
|
||||
}*/
|
||||
|
||||
a:link{
|
||||
color: #909090;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
a:visited{
|
||||
color: #909090;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
ul li a:hover{
|
||||
color: #cb0404;
|
||||
transition-duration: .5s;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.social{
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
.espacio {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
|
||||
.carac small{
|
||||
color: #008000;
|
||||
}
|
||||
.carac {
|
||||
color: #333333;
|
||||
}
|
||||
.carac h2{
|
||||
color: #f42434;
|
||||
}
|
||||
|
||||
.carac h4{
|
||||
color: #f42434;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.bordes {
|
||||
border: 1px solid #eaeaea;
|
||||
|
||||
}
|
||||
|
||||
.bordes2 {
|
||||
background: #f8f8f8;
|
||||
}
|
||||
*/
|
||||
Reference in New Issue
Block a user