Skip to content

Instantly share code, notes, and snippets.

View Brandonsmith23's full-sized avatar

Brandon Smith Brandonsmith23

  • NEWMEDIA
  • Denver CO
View GitHub Profile
<?php
/*
Plugin Name: Login Style
Version: 0.1-alpha
Description: Styling for the login screen
Author: Your Name
Author URI: Your URL
Plugin URI: Your URL
Text Domain: Your Text Domain
Domain Path: /languages
/*
Plugin Name: My Custom Login
Version: 0.1-alpha
Description: Restrics page login
Author: Your Name
Author URI: Your URL
Plugin URI: Your URL
Text Domain: Your Text Domain
Domain Path: /languages
*/
+/* Moving the arrows on the slider */
+.fl-post-carousel-navigation .carousel-next .fl-post-carousel-svg-container {
+ left: 50px;
+}
+.fl-post-carousel-navigation .carousel-prev .fl-post-carousel-svg-container {
+ right: 50px;
+}
/* Styles for the galleries single */
/* taking away the pointer action on the gallery on the about us page */
.fl-post-carousel-gallery .fl-post-carousel-link {
pointer-events: none;
}
<?php
/**
* Gallery custom post type
*/
function register_custom_post_type() {
$labels = [
'name' => 'Galleries',
'singular_name' => 'Gallery',
'add_new' => 'Add New',
@Brandonsmith23
Brandonsmith23 / newbox.sh
Created October 7, 2015 17:21 — forked from tannerjfco/newbox.sh
newbox.sh
#! /bin/sh
echo "Restore Privacy"
curl -sSL https://fix-macosx.com/fix-macosx.py | python
echo "Installing xcode"
xcode-select --install
wait
echo "Installing Homebrew"
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"