Skip to content

Instantly share code, notes, and snippets.

.page-template-page-music #secondary{
float:left;
width:20%;
}
.page-template-page-music #secondary ul{
padding:0;
margin:0;
}
@revitalk
revitalk / attachment-loop.php
Created November 30, 2015 17:55
Loop for WP attachment page
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<!-- Image title-->
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<!-- Full size image -->
<div class="entry-attachment">
<?php if ( wp_attachment_is_image( $post->id ) ) : $att_image = wp_get_attachment_image_src( $post->id, "full"); ?>
.center-nav{
height:6em;
padding:1.5em;
background-color: #0d82c3;
}
.center-nav a{
color:#fff;
font-size: 2em;
}
@revitalk
revitalk / attachment.php
Last active October 7, 2015 17:01
Sample Portfolio files
<?php
// This page is a template for media attachments
?>
<!-- Page header -->
<?php get_header();?>
<div id="main">
<article class="blogPost">
@revitalk
revitalk / index.html
Last active April 18, 2022 15:23
Festival layout
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>NRC Fest</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div id="wrapper"> <!-- this div represents the whole page -->
<header class="clear-item">
@revitalk
revitalk / attachment.php
Last active October 1, 2019 19:23
Theme building 9/28/15
<?php
// This page is a template for media attachments
?>
<!-- Page header -->
<?php get_header();?>
<div id="main">
<?php if(have_posts()) : while(have_posts()) : the_post(); ?>
<!-- Image title-->
@revitalk
revitalk / dropNav.css
Last active August 29, 2015 14:09
dropNav.html
nav {
background-color: #595756;
border-bottom: solid 8px #94db2e;
height: 50px;
}
nav li{
float:left;
list-style-type: none;
border-right: solid 1px #fff;
@revitalk
revitalk / cssdropdown.css
Last active August 29, 2015 14:07
Simple CSS dropdown menu
*{
margin:0;
padding:0;
}
}
body{
font-family:Arial,Verdana,sans-serif;
font-size:1em;
}
*{
margin:0;
padding:0;
}
body{
font-family:Arial,Verdana,sans-serif;
font-size:1em;
}
*{margin:0;
padding:0;}
#wrapper{
width:960px;
margin-left:auto;
margin-right:auto;
}