This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php comments_template( '', true ); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" data-toggle="tooltip" title="Web Solutions Services">WSS</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(function () { | |
$("[data-toggle='tooltip']").tooltip(); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" data-toggle="tooltip" title="first tooltip">hover over me</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="#" rel="tooltip" title="Hover text here">linked text here</a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script type="text/javascript"> | |
$(function () { | |
$("[rel='tooltip']").tooltip(); | |
}); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="header-unit"> | |
<div id="video-container"> | |
<video autoplay loop class="fillWidth"> | |
<source src="http://yourwebsite.com/your-video-file.mp4" type="video/mp4"/> | |
<source src="http://yourwebsite.com/your-video-file.ogg" type="video/ogg"/> | |
<source src="http://yourwebsite.com/your-video-file.webm" type="video/webm"/> | |
Your browser does not support the video tag. I suggest you upgrade your browser. | |
</video> | |
</div><!-- end video-container --> | |
</div><!-- end .header-unit --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.header-unit { | |
height: 150px; | |
border: 2px solid #000; | |
border-right:none; | |
border-left: none; | |
position: relative; | |
padding: 20px; | |
} | |
#video-container { | |
position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div> | |
... | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$profile_tabs = apply_filters( 'wpsc_user_profile_tabs', array( | |
'purchase_history' => __( 'Purchase History', 'wpsc' ), | |
'edit_profile' => __( 'Your Details', 'wpsc' ), | |
//'downloads' => __( 'Your Downloads', 'wpsc' ), | |
)); |