Pure Menus 2

PURE – Menus 2

Pure Menus 2 was designed to give you more customizable control over your navigation menu. This all new stack now comes bundled with Pure for RapidWeaver. Adding advanced and more in-depth customizable settings, you can now style the menu to your liking. Check out some the example pages to see what you can do.

This Stack Requires: Stacks 3

Note: This stack will not replace the original Pure Menus stack and will show up as a separate stack in the library. If you already own Pure for RapidWeaver this additional stack is completely free! Just use the order lookup page to re-download the entire suite.

This is a free update for existing customers of PURE.
20% Off Discount Code for PURE: 25_Pure_052016
Offer Expires May 20, 2016

Check out the New Menus

Check out all of PURE

Hide RapidWeaver Stack

Hide – New FREE Stack

To kick things off I have a new free stack for you too. HIDE is a simple stack that does exactly what it’s name suggests… it hides content on your page, though you can also use it to reveal content. HIDE is made for parts of your website that you don’t want to display to users or only want to display to users when they are viewing your site in particular screen sizes, such as on a tablet or smart phone. Simply place stacks inside of hide and choose what screen sizes you want to hide/reveal the content in.

Check it out!

Font Awesome

Font Awesome

Font Awesome is a free stack that allows you to use Font Awesome icons on any Stacks page.

Many of our own stacks use Font Awesome, though when multiple instances of the stacks are called on a page they were calling Font Awesome over and over again as well. To avoid this so sites would run quicker we now provide this free stack 🙂

Font Awesome

1. Drag Font Awesome onto the page anywhere (it won’t display in preview or when the site is published). This allows you to start using Font Awesome.

Snippet File

2. Drag the Font Awesome snippet into any text/html section. Then change the class to any Font Awesome icon you wish to use – see full list here.

Version 1.0.0 uses Font Awesome version 4.0.3.

Simple Headers Free RapidWeaver Stack

Simple Headers

Simple Headers is a free RapidWeaver Stack that offers extended control over HTML Headers. Customization options allow you to easily change between Headers 1 – 6, Inherit font sytle or change it with control over font size, font weight, underlining, italicizing, and alignment (left, right, center, justify). Inherit coloring or change the color and hover color. Lastly, you can add a custom class of your choosing (optional).

Download for Free

cleanBinders RapidWeaver Stack

Early October Updates

cleanBinders 1.1.2

  • Removed Unnecessary Coding
  • Added ‘break-word’ to Tab Text
  • Size of Tabs Better Adjusts at 320px (iPhone Portrait)

Simple Divider 1.3.3

  • Removed Unnecessary Asset Call & Files
  • Spacing Control Over Both Top & Bottom
  • Customization Section Improved
cleanCarousel RapidWeaver Stack by 1LD

cleanCarousel 3.0 Free Update

  • Now Sparkle Ready!
  • Inner Stack omitted; place content directly inside container stack
  • Resolved conflict with multiple Carousel instances on the same page
  • Carousel themes improved (an removed theme can be achieved with customization options)
  • Pagination added (including position & color options)
  • 9 button controls/arrows
  • Improved customization options section.
Simple Text Free RapidWeaver Stack

Simple Text v1.4.1 Update

New Customization Options

  • Links Inherit All – all colors & customization will be inherited from the theme
  • Line Height On/Off
  • Line Height Size (px)
  • Letter Spacing On/Off
  • Letter Spacing Size (px)

The container is now position: relative so that absolutely positioned items can be placed inside (for advanced users).

In addition, the overflow: visible for parent containers was removed as it was breaking functionality when placed in some stacks. This was originally done for the Rotating text option, which will now have to be done manually by adding padding with the built-in Stacks option, which is the better way to do it anyway or rotated text could overlap with other objects and text.

RapidWeaver Snippets Button

Simple Text Button Snippets

If you wanted separate install options for the snippets used in the Simple Text page, which come as free installs with the free stack, then you have a couple other options.

1. You can manually add them yourself using the codes below.

2. You can simple copy and paste the code below without ever installing them as snippets.

RapidWeaver Snippets Button

The code in these snippets controls the CSS and can be dragged and dropped in the Page Info > Header > CSS section.You then need to create the HTML that will take the CSS styling. These are not in the Snippets and can be easily created by copying and pasting this code:

1
2
3
<a class="buttonDark" href="http://YourLinkSomewhere.com">Button for Dark Backgrounds</a>
<a class="buttonLight" href="http://YourLinkSomewhere.com">Button for Light Backgrounds</a>
<a class="buttonSimple" href="http://YourLinkSomewhere.com">Button that's just dang Simple</a>

The snippets are not necessary to have in your Snippets section in Edit Mode either (so if you want that section cleaned up you can use the following codes):

For Button on Dark backgrounds

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.buttonDark {
     -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
     -ms-border-radius: 3px;
     -o-border-radius: 3px;
     border-radius: 3px;
     text-shadow: 0 1px 1px #000;
     width: 80px;
     text-align: center;
     cursor: pointer;
     margin: 20px auto;
     display: block;
     padding: 7px 15px !important;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     text-shadow: 0px 1px 2px rgba(0, 0, 0, .7);
     border: 1px solid rgba(0,0,0,0.5);
     box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -ms-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -o-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     background-image: -moz-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%);
     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.05)), color-  stop(100%,rgba(0,0,0,0.05)));
     background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: -o-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: -ms-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -webkit-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
     -ms-transition: all 0.4s ease-in-out;
}

For Button on Light backgrounds

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.buttonLight {
     -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
     -ms-border-radius: 3px;
     -o-border-radius: 3px;
     border-radius: 3px;
     text-shadow: 0 1px 1px #FFF;
     width: 80px;
     text-align: center;
     cursor: pointer;
     margin: 20px auto;
     display: block;
     padding: 7px 15px !important;
     -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
     border-radius: 5px;
     text-shadow: 0px 1px 2px rgba(0, 0, 0, .7);
     border: 1px solid rgba(0,0,0,0.5);
     box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -ms-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     -o-box-shadow: 0px 1px 1px rgba(255, 255, 255, .2), inset 0px 1px 1px rgba(255, 255, 255, .4);
     background-image: -moz-linear-gradient(top, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.05) 100%);
     background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.05)), color-stop(100%,rgba(0,0,0,0.05)));
     background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: -o-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: -ms-linear-gradient(top, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     background-image: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%,rgba(0,0,0,0.05) 100%);
     transition: all 0.4s ease-in-out;
     -moz-transition: all 0.4s ease-in-out;
     -webkit-transition: all 0.4s ease-in-out;
     -o-transition: all 0.4s ease-in-out;
     -ms-transition: all 0.4s ease-in-out;
}

The Simple Button

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.buttonSimple {
	text-align: center;
	cursor: pointer;
	background: #349BCE;
	-o-border-radius: 3px;
	-ms-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	border: 3px solid #4CAAD9;
	padding: 7px 15px !important;
	display: block;
	margin: 20px auto;	
	width: 90px;
}
.buttonSimple:hover {
	background: #4CAAD9;
}
.buttonSimple:active {
	background: #349BCE;
	border: 3px solid #349BCE;
}
RapidWeaver Snippets Button

Simple Divider Snippet

We’ve had several customers request coding to duplicate some of our simple looking dividers on various websites of ours. In response we decided to create a free stack call Simple Divider.

Due to the simplicity of this Stack I imagined that some users might prefer to use a snippet instead, so this post is being created for that purpose.

HTML

1
2
3
<div id="simpleDivider">
     <div class="theDivider"></div>
</div>

CSS (Subtle Emboss)

1
2
3
4
5
6
7
8
9
10
11
#simpleDivider {
     width: 100%;
     clear: both;
     padding-top: 20px;
     padding-bottom: 20px;
}
#simpleDivider .theDivider {
     width: inherit;
     border-top: solid 1px #CCC;
     border-bottom: solid 1px #FFF;
}

CSS (Solid)

1
2
3
4
5
#simpleDivider .theDivider {
     width: inherit;
     height: 4px;
     background-color: #E0E0E0;
}

Why two <div> tags and not just one?

Placing a div tag inside of a div tag protects against spacing issues that occur when floated elements are placed above. Example, if there was simple one div tag and a margin was created for the top the margin would not display if there were certain elements floated above it, despite the clear call. The easiest solution, in my opinion, is to contain the existing tag inside another element and create padding, which will have no visible effect other than achieving the desired spacing.

Contest Winners

Winners by “Best of class” categories and random drawing 

Prizes: Each Winner gets our next theme about to release in a week or two. In addition, each winner gets a copy of our latest stack, cleanTabs (seen below).

Thank you everyone for entering – we hope to have another contest early next year.

cabernet rapidweaver theme

Cabernet 1 Now FREE

I suppose not a whole lot needs to be said here. Cabernet 1 has been out for a while and we don’t get many support questions on it any more… we were considering discontinuing the theme, but thought we’d just make it Free and still offer support.

It’s replacement theme, Cabernet 2, is fully responsive and offers a whole lot more than the first, though the first is still very engaging for minimalistic and photo-oriented sites.

See the Demo

Download