Community @ The Turning Gate

Support community for TTG plugins and products.

NOTICE

The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.

This forum is now closed, and exists here as a read-only archive.

  • New user registrations are disabled.
  • Users cannot create new topics.
  • Users cannot reply to existing topics.

You are not logged in.

#1 2016-05-05 07:50:20

gaufde
Member
From: Ojai, CA
Registered: 2014-07-11
Posts: 72
Website

Another Test Site

Hi Everyone,
I just thought that I would share my Backlight testing site.
http://release.gracesonaufderheide.com

Just like Rod, I have it set up in a subdomain. I don't have all off the different layout options set up like Rod, however, I have been playing a lot with custom CSS and phplugins. I am still fiddling with this site, so some things might be broken for a bit while I try new pieces of code.

Graceson


Graceson Aufderheide
gracesonaufderheide.com

Offline

#2 2016-05-05 09:53:29

johnbrks
Member
From: Los Angeles
Registered: 2015-08-14
Posts: 147
Website

Re: Another Test Site

this is cool.  could you share a copy of your css and phplugin files?  it will make it easier to understand how they work in backlight. 
thanks

Offline

#3 2016-05-05 10:00:59

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Another Test Site

You can directly view Graceson's css file by looking at the page source (right click and choose View Page Source (or similar wording) and looking for the link to his custom css. Click on that. Then look for the section he's marked as /*BACKGROUND*/


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#4 2016-05-05 11:15:08

gaufde
Member
From: Ojai, CA
Registered: 2014-07-11
Posts: 72
Website

Re: Another Test Site

To make it easy, here is the the current code for those two files. Keep in mind that some of doesn't work perfectly yet. I removed parts that I am still trying to figure out.

CSS:

figure:hover .album-title{
	color: #8BD56C;
	}
	
.album-title{
	font-size: 14pt;
	}
	
input[type="submit"], input[type="text"], button, textarea{
	-moz-border-radius: 0 !imortant;
	-webkit-border-radius: 0 !important;
	}
	
button, input[type="submit"] {
	font-weight: bold;
	}
	
button:hover, input[type="submit"]:hover {
	color: #8bd56c;
	}

.foot{
	padding-left: 10%;
	padding-right: 10%px;
	}


#primary-menu li.menu-item a{
	font-weight: bold !important;
	font-size: 12pt !important;
	}


/*HIGHLIGHT MENU*/
.selected {
color: #8BD56C !important;
}



	
/*FOOTER SEARCH*/	
.footsearch{
	max-height: 20px !important;
	line-height: 20px !important;
	max-width: 150px !important;
	font-size: 12px;
	padding-top: 0;
	}
	
/*HEADDER SEARCH*/
.headform{
	width: 120px !important;
	height: 20px !important;
	line-height: 20px !important;
	margin-top: 0;
	font-size: 12px !important;
	display: inline!important;
	}
	
.headbutton{
	width: 20px !important;
	height: 20px !important;
	line-height: 20px;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	padding-left: 5px !important;
	padding-right: 5px !important;
	font-size: 12px !important;
	text-align: center !important;
	display: inline!important;
	}
		
.headfloat{
	float: right;
	z-index: 1;
	position: relative;
	}

@media screen and ( max-width: 1024px ) {
	.headfloat {
		display: none;
	}
}


/*BACKGROUND*/
body {
	background-attachment: fixed, fixed;
	background-image: url("http://gracesonaufderheide.com/phplugins/images/tree.png"),url("http://gracesonaufderheide.com/phplugins/images/goldsmithbackgraound.png");
	background-position: bottom left, bottom right;
	background-repeat: no-repeat, no-repeat;
	background-color: #2f2f2f !important;

	}


/*GRID ICON BACKGROUND*/
#the-grid .grid-icons {
	background-color:rgba(47,47,47,.6);   
   }

phplugins:

 function ttg_navigation( $style, $path ) {
      echo '
      	<div class="headfloat">
	<div id="search" class="collapse clearfix">
	<form action="/backlight/search" method="GET">
	<input type="text" id="q" name="q" placeholder="Photo Search" class="headform" value=""/>
	<button type="submit" class="headbutton"><i class="fa fa-search"></i></button>
	</form>
	</div> <!-- #search -->
	</div>


'; return true;
}

function ttg_head_end( $style, $path ) {
echo '

<script>
$(document).ready(function() {
$("#primary-menu li a").each(function() {
if ($(this).prop("href") == window.location.href) {
$(this).addClass("selected");
}
});
});
</script>
';
} // END

//FOOTER
      function ttg_footer_top( $style, $path ) {
      echo '
        <div class="foot">
       <div id="search" class="collapse clearfix">
<form action="/backlight/search" method="GET">
<input type="text" id="q" name="q" placeholder="Photo Search" class="footsearch" value=""/>
<button type="submit" class="footsearch">Search</button>
</form>
</div> <!-- #search -->

<div>
		<div>	
<p>&copy; 2012-'.date("Y").' Graceson Aufderheide, All rights reserved.<br><a href="http://gracesonaufderheide.com/policies/">Terms, Conditions, and Policies</a></p><div></div>		
	</div>
	 <!-- #footer -->

'; return false;
}

Graceson Aufderheide
gracesonaufderheide.com

Offline

#5 2016-05-06 11:01:59

johnbrks
Member
From: Los Angeles
Registered: 2015-08-14
Posts: 147
Website

Re: Another Test Site

thanks much.  and thanks for the css viewing info.  (i'm not much knowledgeable about css, so this is helpful)

Offline

#6 2016-05-18 02:04:16

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Another Test Site

Do you mean the navigation in the header? It looks like Graceson had done exactly that with a media query that hide the div he created to hold the search form.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

#7 2016-05-18 06:20:30

pwpphoto
Member
From: Fairbanks, Alaska
Registered: 2012-12-22
Posts: 71
Website

Re: Another Test Site

Rod,
I figured it out by looking at your hooks example. I needed to move it to the header area and out of the nav area as tray 1 also has a nav hook and that is what was causing the issue.

Offline

#8 2016-05-18 06:22:44

rod barbee
Moderator
From: Port Ludlow, WA USA
Registered: 2012-09-24
Posts: 17,830
Website

Re: Another Test Site

Graceson put his in a div in the navigation via phplugins. Then in the css he hides it for browser widths 1024px or smaller.


Rod 
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site

Offline

Board footer

Powered by FluxBB