Categories
Uncategorized

Recommended Products Code

From line 225:

<div class=”media”>
<div class=”media-left”> <a href=”#”> <img class=”media-object” src=”../images/100X125.gif” alt=”placeholder image”> </a> </div>
<div class=”media-body”>
<h4 class=”media-heading”>Product</h4>
Look for more lawn signs coming soon.</div>
</div>

 

Categories
Uncategorized

Code For Search/Submit Bar

<form class=”navbar-form navbar-right” role=”search”>
<div class=”form-group”>
<input type=”text” class=”form-control” placeholder=”Search”>
</div>
<button type=”submit” class=”btn btn-default”>Submit</button>
</form>

Categories
Uncategorized

Pagination Bar Page 5 Code

Here is code to add a “page 5″ to pagination bar:

<li class=”disabled”><a href=”#”>5</a></li>

Remove “disabled” and change to “active”

Replace x with page address.

Categories
Uncategorized

Digital Age Webcrafting, Videography & Printing

We have updated our website Mansavage Productions with new digital services and products. Special thanks to Pixabay.

Categories
Uncategorized

ThatHotRodShop.com Domain Name For Sale On Ebay by Mansavage Productions

Update 3/17/2017: This is an update to previous post. Mansavage Productions now has the domain name thathotrodshop.com for sale. Contact us for more information.

Mansavage Productions is now a featured seller on Ebay with the seller name mansavagepro. There you will find some of the products that we design and manufacture.

Get in on the rapidly growing and highly profitable automobile high performance market with the domain name thathotrodshop.com which is for sale now by Mansavage Productions. Ask us about how we can design a custom ecommerce website to go with your domain name and generate you some income!

Categories
Uncategorized

Created QRCode Today

Created Quick Response Code today using the QR Codify website:
http://www.qrcodify.com/

This image is 4.843 inches x 4.843 inches. The website downloads the code at 96 dpi but I changed it to 300 dpi at same physical size.

I submitted image to printer as pdf file.

This image embedded here is gif file at 96 dpi:

qrcodifyimpactprinting

To know the ideal size, use the following simple formula:
Size of your QR Code = Distance between the QR Code and the Scanner ÷ 10
Example : 33cm square to read it at 3m away.

 

Categories
Uncategorized

Bye Bye Quicktime For Windows

Uninstalled Quicktime for Windows today.

Categories
Uncategorized

JavaScript Code For Slideshow

<p class=”textcenter”> <script language=”JavaScript”>
var i = 0;
var path = new Array();// LIST OF IMAGES
path[0] = “/bodywork/syclonebackside.jpg”;
path[1] = “/bodywork/syclonefrontside.jpg”;
path[2] = “/bodywork/sycloneside.jpg”;
path[3] = “/bodywork/paintautobody.jpg”;

function swapImage()
{
document.slide.src = path[i];
if(i < path.length – 1) i++; else i = 0;
setTimeout(“swapImage()”,3000);
}
window.onload=swapImage;
</script>
<img height=”271″ name=”slide” src=”/bodywork/syclonebackside.jpg” width=”320″ /><br></p>
Categories
Uncategorized

How To Get Rid Of Green Fill In Fluid Grid Layouts Using Dreamweaver CS6

The green overlay in a new fluid grid layout can be turned off by going to the Visual Aids icon (on same line as Split and Design views, to the right, a dotted square with and eye in front of it). Click the Visual Aids icon and then Deselect Fluid Grid Layout Guides to turn the green fill off.

Categories
Uncategorized

Formula For Incremental Shipping In PayPal Button Creation

shipping2=2.50

Change the “2.50” to whatever amount you want to be the shipping charge when more than one item is ordered.

Goes in “Advanced Variables” in “Customize Advanced Features” when creating PayPal button.

Must check option that customers can change the amount of the order.