Solitude Tutorials

What is Responsive Design?
Responsive Web Design (RWD) essentially indicates that a web site is crafted to use Cascading Style Sheets 3 media queries, an extension of the @media rule, with fluid proportion-based grids (which use percentages and EMs instead of pixels) , to adapt the layout to the viewing environment, and probably also use flexible images. As a result, users across a broad range of devices and browsers will have access to a single source of content, laid out so as to be easy to read and navigate with a minimum of resizing, panning, and scrolling.

Give it a try for yourself »
Using ExtraContent (EC) Areas 1 to 4
This Theme uses 4 ExtraContent Areas you can check them here!
Implementing Social Icons Links in your project.

The following steps describe how to utilize the Social Icons within your project.

  1. Insert the following code in the Sidebar or Footer area within RapidWeaver:
    <ul class="icons">
    	<li><a href="#" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
    	<li><a href="#" class="icon fa-facebook"><span class="label">Facebook</span></a></li>
    	<li><a href="#" class="icon fa-instagram"><span class="label">Instagram</span></a></li>
    	<li><a href="#" class="icon fa-github"><span class="label">Github</span></a></li>
    	<li><a href="#" class="icon fa-dribbble"><span class="label">Dribbble</span></a></li>
    	<li><a href="#" class="icon fa-tumblr"><span class="label">Tumblr</span></a></li>
    </ul>
    
    
  2. Replace the # with the page URL of your social icon.
  3. Replace the class value with the corresponding social nerwork name of the social icon of your choice.
  4. Highlight the entire code and click Clear Formatting, then Ignore Formatting under Format at the top left of your screen.
How to replace the default Banner image for your own!

If you are using RapidWeaver 7+, you just need to drag and drop your image into the Site General Settings page “Banner” section

Stacks Image 87

To use a page specific banner, select the page and navigate to the Page Inspector > General Settings tab and use the “Override Site Banner” section.

Stacks Image 93
How to add a Video Banner to your project!

The following steps describe how to add Video Banner to your project within RapidWeaver.

  1. Drag and drop your Video(.mp4) into to your Resources panel.
  2. Insert the following code in your page Content or Sidebar:
    
    <script>var video = '<video src="%resource(banner_1.mp4)%" muted autoplay loop playsinline></video>'; document.getElementById('media').innerHTML = video;</script>
    
    
  3. Highlight the entire code and click Clear Formatting, then Ignore Formatting under Format at the top left of your screen.
  4. You can change the height of the Banner in Page Inspector > Styles
How to Link & smooth Scroll through sections.

This Theme as some nice and cool effects built-in, an example is the ability to scroll when clicking on a link. The following steps describe how to scroll through sections, as an example we will be using the ExtraContent 1 in the banner.

  1. Insert the following code in an HTML stack or anywhere that allows HTML:
    <div id="myExtraContent1">
    	<div class="align-center">
    		<h1>It's all about the <span>big hero</span> strapline.</h1>
    		<p>But don't forget about your jazzy tag line!</p>
    		<a href="#content" class="button big scrolly">Learn More</a>
    	</div>
    </div>
    
    
  2. Replace the ID value "#content" in the link href above with the name of the ID you need to scroll to and use the class name "scrolly" to enable the scroll effect on you page.
  3. Optional ExtraContent sections ID's are #two, #three, #four, #footer.
Credits and Thanks!
This page is using the Toggle Stack by Will Woodgate
You can get the Toggle Stack for free: here, Thanks Will.