ไบ ๐๐๐
ไธ ๐๐๐๐
ไบ ๐๐๐
.navbar | |
.caret | |
.label | |
.table | |
.img-responsive | |
.img-rounded | |
.img-thumbnail | |
.img-circle | |
.sr-only | |
.lead |
<link rel="import" href="../yt-video/yt-search-video.html"> | |
<link rel="import" href="../google-map/google-map.html"> | |
<polymer-element name="my-element"> | |
<template> | |
<style> | |
:host { | |
position: absolute; | |
width: 100%; |
'use strict'; | |
module.exports = function (grunt) { | |
// load all grunt tasks | |
require('matchdep').filterDev('grunt-*').forEach(grunt.loadNpmTasks); | |
grunt.initConfig({ | |
//Add package.json reference |
<?php | |
// Change the footer text in Genesis with a back up if blank | |
add_filter('genesis_footer_creds_text', 'genesischild_footer_text'); | |
function genesischild_footer_text() { | |
if( get_theme_mod( 'footer_text_block') != "" ) { | |
echo get_theme_mod( 'footer_text_block'); | |
} | |
else{ |
<?php | |
/* SLIDER CUSTOM FIELD FOR HOMEPAGE */ | |
$images = get_field('slider_photos'); | |
$count=0; | |
$count1=0; | |
if($images) : ?> | |
<div id="slider"> | |
<div id="carousel" class="carousel slide"> | |
<!-- Indicators --> |
ไธ ๐๐๐๐
ไบ ๐๐๐
<?php | |
/** | |
* This code shows pagination for WooCommerce shortcodes when it's embeded on single pages. | |
* Include into functions.php. | |
*/ | |
if ( ! is_admin() ) { | |
// ---------------------- FRONTPAGE ------------------- | |
if ( defined('WC_VERSION') ) { |
<div id="responsive-tabs"> | |
<ul class="horizontal"> | |
<?php | |
if (have_rows('tabs')): | |
$i = 1; | |
while (have_rows('tabs')): | |
the_row(); | |
?> | |
<li><?php | |
echo '<a href= "#tab-' . $i . '">' . get_sub_field("tab_link") . '</a>'; |
/* Post Thumbnail Grid */ | |
.gridcontainer h2 a{color: #333; font-size: 13px;} | |
.gridcontainer .griditemleft{float: left; width: 150px; margin: 0 30px 20px 0;} | |
.gridcontainer .griditemright{float: left; width: 150px;} | |
.gridcontainer .postimage{margin: 0 0 5px 0;} | |
.gridcontainer .postimage-title {text-align: center;} |
$(document).ready(function() { | |
$('.carousel').carousel(); | |
$(".carousel-indicators li:first").addClass("active"); | |
$(".carousel-inner .item:first").addClass("active"); | |
}); |