WEB TECHNOLOGY TUTORIAL SESSION #5 FOR WE CREATE IDENTITY. Module 1 - We Create Identity

Size: px
Start display at page:

Download "WEB TECHNOLOGY TUTORIAL SESSION #5 FOR WE CREATE IDENTITY. Module 1 - We Create Identity"

Transcription

1 WEB TECHNOLOGY TUTORIAL SESSION #5 FOR WE CREATE IDENTITY Module 1 - We Create Identity

2 WEB TECHNOLOGY CONTENT OF THIS LECTURE Usability More on jquery Integrate: Social media, image viewer, slideshow Next and last session on Oct. 16/17 th Examples & vanslooten.com/create WE CREATE IDENTITY 10/3/2018 2

3 CONTENTS OF THIS COURSE ACTIVITIES OVERVIEW each session 1 hour tutorial presentation 3 hours work on your site, assignments Date Subjects 1 4/5 Sep. Intro, editorial process, create first webpage 2 11/12 Sep. Basics of HTML and CSS, editorial process, Blog (WordPress) 3 18/19 Sep. HTML & CSS, WordPress themes 4 25/26 Sep. Introduction to JavaScript & jquery, more about WordPress 5 2/3 Oct. Advanced techniques, jquery plugins, social media 6 16/17 Oct. Test & evaluation, peer review WE CREATE IDENTITY 10/3/2018 3

4 ASSIGNMENT #4 Portfolio content (texts): no management/selling bla-bla, but show (for instance) how you contributed to the project, or what skills where involved to create it: you are not selling the product, but have to sell yourself What could be your 'personal touch' of the design in a template/theme/stylesheet? One or more from: Own header/main image/icon/logo Changes in layout/positioning Own/new font(s) Well defined (new) color-scheme/palette Individual/special styling of elements Have at least 2 changes, describe them in your Blog! WE CREATE IDENTITY 10/3/2018 4

5 USABILITY: GRAPHICAL DESIGN DESIGN ELEMENTS Navigation Aids (links, icons) Structure (menu, sitemap) Simple, Consistent Entire site same look & feel Accessibility Text, Graphics, Audio & Video Feedback Mechanisms Value your visitors: enable them to leave comments <img alt="description..." WE CREATE IDENTITY 10/3/2018 5

6 USABILITY DON'T MAKE ME THINK Titles, headlines: accurate description Organize content in a neat, logical order. Make pages clear and orderly. Be brief, if possible. Buttons, menu items Make their intended use obvious. Don t use button titles that are long. If it s a search button, call it Search. If the button is used to send e- mail, call it Send. Search Features Keep it simple Hide advanced features WE CREATE IDENTITY 10/3/2018 6

7 USABILITY FACTS OF LIFE Your visitors Don t Really Read Pages Trial & Error, visit in a hurry no time scan pages Don t Make Optimal Choices Guessing, click around. <back button Muddle Through No time to read instructions Click till they find or: frustration sets in, leave site Design pages for scanning, not reading WE CREATE IDENTITY 10/3/2018 7

8 >TRUNK TEST< 30sec Image that you ve been blindfolded and locked in the trunk of a car, then driven around for a while and dumped on a page somewhere deep in the bowels of a Website. If the page is well designed, when your vision clears you should be able to answer these questions without hesitation after 30 seconds: What site is this (Site ID) What page am I on (Page name/title) What are the major sections of this site (Sections) What are my options at this level (Local Navigation) Where am I in the scheme of things? ( You are here indicators) How can I search? WE CREATE IDENTITY 10/3/2018 8

9 Site ID Sections/main navigation You are here indicators Search Page name (title) Local navigation WE CREATE IDENTITY 10/3/2018 9

10 Important WE CREATE IDENTITY 10/3/

11 PREPARE IMAGES FOR USE ON A WEBSITE PHOTOSHOP: FILE > EXPORT > SAVE FOR WEB Scans, photos: JPEG Max. width 1000px Compression: Medium or High Result < 200K Images with transparency? Use PNG Learn more WE CREATE IDENTITY 10/3/

12 TEST YOUR WEBSITE Use multiple browsers and have someone else review it validator.w3.org Errors about ALT-tags are less important You can ignore most of the warnings Browser: Right-click, Inspect Element Webdeveloper tools (all browsers, access via menu, or F12) > Tools > Developer tools (CTRL+Shift+I) WE CREATE IDENTITY 10/3/

13 INTEGRATE: SOCIAL MEDIA EMBEDDING TWITTER FEED Show recent tweets Sign in, goto Settings > Widgets > Create New Choose type: eg. List and enter details: Enter your handle, Twitter feeds in Wordpress?: Copy code into your page dev.twitter.com WE CREATE IDENTITY 10/3/

14 INTEGRATE: SOCIAL MEDIA FACEBOOK Like button: developers.facebook.com/docs/plugins/like-button 1) Enter URL (address) of your site here 2) Follow instructions to copy code in your page developers.facebook.com WE CREATE IDENTITY 10/3/

15 INTEGRATE: PHOTO VIEWER Image viewer, also called LightBox Connect to online services: Instagram, Picasa, Flicker Show video (Youtube) Example: fancybox codepen.io/vanslooten/pen/rojnoa WE CREATE IDENTITY 10/3/

16 FANCYBOX, A LIGHTBOX VARIANT INTEGRATE AN IMAGE GALLERY INTO YOUR SITE 1. Include jquery and fancybox scripts in header <!-- Add jquery library --> <script src=" <!-- Add fancybox --> <link rel="stylesheet" href=" type="text/css" media="screen" /> <script src=" In this example, we use the CDN-versions of the scripts from cdnjs.com/libraries/fancybox codepen.io/vanslooten/pen/rojnoa WE CREATE IDENTITY 10/3/

17 FANCYBOX SHOW THE GALLERY IN A WEBPAGE 2. Create a page including a list of linked images <ul><li> <ul class="images"> <li class="image"><a class="fancybox" rel="mygallery" href="images/chrysanthemum.jpg" title="chrysanthemum: mooie bloem"><img src="images/chrysanthemum.jpg" height="75" width="75"> </a></li> Add script to start fancybox <script type="text/javascript"> $(document).ready(function() { $(".fancybox").fancybox(); }); </script> Name of your gallery codepen.io/vanslooten/pen/rojnoa WE CREATE IDENTITY 10/3/

18 LIGHTBOX VARIANTS Overview of widgets, plugins etc WE CREATE IDENTITY 10/3/

19 IMAGE CAROUSEL Sliders & Image carousels Overview of widgets, plugins etc W3.CSS Slideshow WE CREATE IDENTITY 10/3/

20 JQUERY APPLIED TURN STANDARD WORDPRESS GALLERY INTO ISOTOPE GALLERY In Post or Page, Create a Gallery (, Create Gallery ) Add code in text-mode*: Take care: if you switch from Text to Visual mode, WordPress will mess up your code (so stay in Text-mode). Also, do not add blanc lines. <!-- load isotope: --> <script src=" <!-- activate isotope: --> <script> jquery(function($){ // remove some default classes from the standard-wordpress gallery: $('.gallery').removeclass("gallery-columns-3"); // set style for layout of the items: $('.gallery-item').css({"width":"20%", "margin":0, "padding":0}); // activate isotope: $('.gallery').isotope({itemselector: '.gallery-item', layoutmode: 'masonry'}); }); </script> detailed description Isotope WE CREATE IDENTITY 10/3/

21 JQUERY APPLIED ADD A LIGHTBOX stripjs.com api.jquery.com/html <!-- load the strip-lightbox: --> <script src=" <link rel="stylesheet" type="text/css" href=" // jquery code for Strip-Lightbox: $('.gallery-item a').addclass("strip"); $('.gallery-item a').attr("data-strip-group","gallery-group"); demo WE CREATE IDENTITY 10/3/

22 CHILD THEME: CHANGE LAYOUT/HTML WHERE TO FIND WHAT? Style & layout: style.css HTML: Anatomy of a WordPress theme To change a file, copy it from parent to child (theme folder) index.php, single.php, page.php... WE CREATE IDENTITY 10/3/

23 CHILD THEME: CHANGE LAYOUT/HTML ADD FB LIKE BUTTON TO YOUR SITE If you did not do this yet: create a child theme Get the code (see slide 14) 1. Find footer.php in parent theme, download it to your website folder 2. Edit footer.php, insert the code, save 3. Upload footer.php to child theme folder 2) 3) 1) WE CREATE IDENTITY 10/3/

24 PROCESSING 1. Include processing script 2. Add a canvas and link it s id with data-processing-target 3. Write the script 1) 2) <script src=" <script type="application/processing" data-processing-target="pjs"> void setup() { size(200, 200); 3) background(100); stroke(255); ellipse(50, 50, 25, 25); println('hello web!'); } </script> <canvas id="pjs"></canvas> how to include a.pde file codepen.io/vanslooten/pen/pjrorq WE CREATE IDENTITY

25 ASSIGNMENT PEER REVIEW #5 1. Write a Peer-review on the site of one other student Use this webform (link will be available at Friday Oct.12 th 9:00h) 2. Write on your Blog: a summary of your review, including: A link to the Showcase Portfolio you reviewed Reflection (what did you learn from reviewing?) Analyze one of the pages of the site you reviewed: explain how the page was made (provide technical details) The summary on your Blog will be public: so be polite and remove sensitive details that might be in the review. Be aware that there are some sites which are not publicly accessible: you have to visit them from the university network or use a VPN connection. You have to do the review between Friday Oct 12th and Wednesday Oct. 17th. Due date: Wednesday Oct. 17th WE CREATE IDENTITY 10/3/

26 NEXT WEEK NO LECTURE (NEXT & LAST LECTURE: OCT 16/17 TH ) FINALIZE SITE, ADD PROJECT RESULTS TO SHOWCASE PORTFOLIO Need help? Fjodor's office: Horst Building, W241 f.vanslooten@utwente.nl Examples & vanslooten.com/create

WEB TECHNOLOGY TUTORIAL SESSION #6 FOR WE CREATE IDENTITY. Module 1 - We Create Identity

WEB TECHNOLOGY TUTORIAL SESSION #6 FOR WE CREATE IDENTITY. Module 1 - We Create Identity WEB TECHNOLOGY TUTORIAL SESSION #6 FOR WE CREATE IDENTITY Module 1 - We Create Identity WEB TECHNOLOGY CONTENT OF THIS LECTURE Test & evaluation Peer review Grading of Web Technology and the Showcase Portfolio

More information

Website Development (WEB) Lab Exercises

Website Development (WEB) Lab Exercises Website Development (WEB) Lab Exercises Select exercises from the lists below to complete your training in Website Development and earn 125 points. You do not need to do all the exercises listed, except

More information

~Arwa Theme~ HTML5 & CSS3 Theme. By ActiveAxon

~Arwa Theme~ HTML5 & CSS3 Theme. By ActiveAxon ~Arwa Theme~ HTML5 & CSS3 Theme By ActiveAxon Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel free to email us via our user page contact

More information

USER GUIDE AND THEME SETUP

USER GUIDE AND THEME SETUP Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free ask any questions on the online Support Forum, located at: http://themewich.com/forum.

More information

28 JANUARY, Updating appearances. WordPress. Kristine Aa. Kristoffersen, based on slides by Tuva Solstad and Anne Tjørhom Frick

28 JANUARY, Updating appearances. WordPress. Kristine Aa. Kristoffersen, based on slides by Tuva Solstad and Anne Tjørhom Frick Updating appearances WordPress Kristine Aa. Kristoffersen, based on slides by Tuva Solstad and Anne Tjørhom Frick Agenda Brief talk about assessments Plan for WordPress lessons Installing themes Installing

More information

User Guide and Theme Setup

User Guide and Theme Setup Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free ask any questions on the online Support Forum, located at: http://themewich.com/forum.

More information

IEEE Wordpress Theme Documentation

IEEE Wordpress Theme Documentation IEEE Wordpress Theme Documentation Version 1.0.2 2014-05- 16 Table of Contents TABLE OF CONTENTS 2 INITIAL SETUP 3 FRONT PAGE 3 POSTS PAGE 4 CONTACT 5 SITE MAP 6 MENU 7 HOME PAGE 8 PAGE TEMPLATES 10 LEFT

More information

The Structure of the Web. Jim and Matthew

The Structure of the Web. Jim and Matthew The Structure of the Web Jim and Matthew Workshop Structure 1. 2. 3. 4. 5. 6. 7. What is a browser? HTML CSS Javascript LUNCH Clients and Servers (creating a live website) Build your Own Website Workshop

More information

PROFILE DESIGN TUTORIAL KIT

PROFILE DESIGN TUTORIAL KIT PROFILE DESIGN TUTORIAL KIT NEW PROFILE With the help of feedback from our users and designers worldwide, we ve given our profiles a new look and feel. The new profile is designed to enhance yet simplify

More information

Kinetika. Help Guide

Kinetika. Help Guide Kinetika Help Guide 1 Hope you enjoy Kinetika theme! 3 Table of Contents Important Links 6 Theme Options - Setting Up Logo 26 Cover Photos 44 Applying Revolution Slider Slides 71 Important Notes 7 Logo

More information

MMP350 Class Notes Week 8

MMP350 Class Notes Week 8 MMP350 Class Notes Week 8 MMP350 Class Notes Week 8... 1 This Week s goals... 1 Materials... 1 Creating a Child Theme... 2 Purpose... 2 Overview... 2 Step: Create a Child Theme Folder... 2 Step: Enqueue

More information

A set-up guide and general information to help you get the most out of your new theme.

A set-up guide and general information to help you get the most out of your new theme. Hoarder. A set-up guide and general information to help you get the most out of your new theme. This document covers the installation, set up, and use of this theme and provides answers and solutions to

More information

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition

LizardThemes.com Free & Premium WordPress Themes. LizardThemes. User Guide. First Edition LizardThemes.com Free & Premium WordPress Themes LizardThemes User Guide First Edition Online version: http://lizardthemes.com/documentation/ 2013 Contents Chapter 1 How to start... 3 Chapter 2 Theme Settings...

More information

WEBSITE INSTRUCTIONS

WEBSITE INSTRUCTIONS Table of Contents WEBSITE INSTRUCTIONS 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

WEBSITE INSTRUCTIONS. Table of Contents

WEBSITE INSTRUCTIONS. Table of Contents WEBSITE INSTRUCTIONS Table of Contents 1. How to edit your website 2. Kigo Plugin 2.1. Initial Setup 2.2. Data sync 2.3. General 2.4. Property & Search Settings 2.5. Slideshow 2.6. Take me live 2.7. Advanced

More information

The Ultimate Blogging Cheat Sheet Over 90 Blogging Terms and Tools Defined

The Ultimate Blogging Cheat Sheet Over 90 Blogging Terms and Tools Defined This document is brought to you by MomBlogMentor.com and may include affiliate links. Wordpress.org A blogging platform software that you use on a self-hosted site. Wordpress.com A free blogging platform.

More information

While editing a page, a menu bar will appear at the top with the following options:

While editing a page, a menu bar will appear at the top with the following options: Page Editor ===> Page Editor How Can I Use the Page Editor? The Page Editor will be your primary way of editing your website. Page Editor Basics While editing a page, you will see that hovering your mouse

More information

Website Publishing Tool Manual

Website Publishing Tool Manual Customer Support Website Publishing Tool Manual This is a designed as a definitive guide to all the features and tools available within Website Publishing Tool. Contents Introduction... 4 Adding Content...

More information

NETZONE CMS User Guide Copyright Tomahawk

NETZONE CMS User Guide Copyright Tomahawk NETZONE CMS User Guide Copyright 2015. Tomahawk 1 Phone: + 64 9 522 2333 Email: getintouch@tomahawk.co.nz Tomahawk 2015 www.tomahawk.co.nz 2 NETZONE CMS USER GUIDE WHAT YOU LL FIND INSIDE LOGGING IN 4

More information

Basics of Web Technologies

Basics of Web Technologies Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for Web Designing Given below is the brief description for the course you are looking for: Introduction to Web Technologies

More information

DELIZIOSO RESTAURANT WORDPRESS THEME

DELIZIOSO RESTAURANT WORDPRESS THEME DELIZIOSO RESTAURANT WORDPRESS THEME Created: 06/08/2013 Last Update: 25/10/2013 By: Alexandr Sochirca Author Profile: http://themeforest.net/user/crik0va Contact Email: alexandr.sochirca@gmail.com v.

More information

DOCUMENTATION. Lotos WordPress Theme

DOCUMENTATION. Lotos WordPress Theme DOCUMENTATION Lotos WordPress Theme Lotos Simple & Elegant Blog Theme Lotos is a versatile and powerful multipurpose WordPress blog theme perfect for any personal blog. Lotos makes customizing your blog

More information

Sigurd WordPress Theme

Sigurd WordPress Theme This is a complete guide to help you manage the installation and setup of the Theme that you just bought. Thank you for purchasing our theme. We hope that you ll find it easy to use and customize. Please

More information

Creating a Website Using Weebly.com (June 26, 2017 Update)

Creating a Website Using Weebly.com (June 26, 2017 Update) Creating a Website Using Weebly.com (June 26, 2017 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme)

A Quick Introduction to the Genesis Framework for WordPress. How to Install the Genesis Framework (and a Child Theme) Table of Contents A Quick Introduction to the Genesis Framework for WordPress Introduction to the Genesis Framework... 5 1.1 What's a Framework?... 5 1.2 What's a Child Theme?... 5 1.3 Theme Files... 5

More information

Bluehost and WordPress

Bluehost and WordPress Bluehost and WordPress Your Bluehost account allows you to install a self-hosted Wordpress installation. We will be doing this, and you will be customizing it for your final project. Using WordPress 1.

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

More information

Important installation note Back to Top. Homepage Overview Back to Top

Important installation note Back to Top. Homepage Overview Back to Top Inspire: Important installation note Back to Top After installing and activating the theme, you need to navigate to Settings > Permalinks and click on the Save Changes button, even if you haven t made

More information

WPI Project Center WordPress Manual For Editors

WPI Project Center WordPress Manual For Editors WPI Project Center WordPress Manual For Editors April 17, 2015 Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 Adding

More information

WORDPRESS 101 BOULDER CO. TRAINING NOVEMBER, 2018

WORDPRESS 101 BOULDER CO. TRAINING NOVEMBER, 2018 WORDPRESS 101 BOULDER CO. TRAINING NOVEMBER, 2018 PAGES, POSTS, IMAGES AND DOCUMENTS IN WORDPRESS WHAT IS A PAGE; WHAT IS A POST? A page is static content A webpage Most Extension sites consist of several

More information

Surface Documentation

Surface Documentation Surface Documentation A fully responsive magazine and blogging WordPress theme credit... Surface is a fully responsive magazine and blogging WordPress theme, built in a timeless and dynamic style. Surface

More information

GalleryAholic Documentation (Updated: )

GalleryAholic Documentation (Updated: ) GalleryAholic Documentation (Updated: 08-29-2017) After a successful install click onto the module called GalleryAholic. The last tab option you will see is, Image Settings. Your selections are, Joomla

More information

Smarty Theme Documentation

Smarty Theme Documentation Smarty Theme Documentation Also available Online manual and Video tutorials. 2001 2017 Stylemix LLC Table of Contents Getting Started... 1 Introduction... 1 System Requirements... 1 Installing the Theme...

More information

1. Beginning (Important)

1. Beginning (Important) Appointway Wordpress" Documentation by InkThemes Get Your Site Ready in Just 1 Click Thank you for purchasing our theme. If you have any questions that are beyond the scope of this help file, please feel

More information

SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress

SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress SmartTheme Manual 1 Last update: 2017/07/29 OptimizePress Copyright 2017 OptimizePress Table of Contents 1. SmartTheme... 1 2. Initial Setup... 2 2.1. Installing The Theme... 3 2.2. Installing & Activating

More information

Content Elements. Contents. Row

Content Elements. Contents. Row Content Elements Created by Raitis S, last modified on Feb 09, 2016 This is a list of 40+ available content elements that can be placed on the working canvas or inside of the columns. Think of them as

More information

Wix Tutorial 10/2/2015. Prof. María L. Moctezuma

Wix Tutorial 10/2/2015. Prof. María L. Moctezuma Wix Tutorial 10/2/2015 Prof. María L. Moctezuma TABLE OF CONTENTS Free Site Basics... 1 Signing Up... 2 Choosing Your Template... 3 Before You Select a Template... 3 Navigating Through Wix's Template

More information

CSS worksheet. JMC 105 Drake University

CSS worksheet. JMC 105 Drake University CSS worksheet JMC 105 Drake University 1. Download the css-site.zip file from the class blog and expand the files. You ll notice that you have an images folder with three images inside and an index.html

More information

eportfolio Support Guide

eportfolio Support Guide eportfolio Support Guide D2L Services West Chester University of Pennsylvania www.wcupa.edu/d2l 610-436-3350, option 2 Anderson Hall, room 20 d2l@wcupa.edu v10.3 September 2014 1 CONTENTS EPortfolio Basics

More information

The Fox Documentation

The Fox Documentation The Fox Documentation Hi there! Thank you once again for purchasing The Fox Theme. While installing the item or using it, if you need any help, please open a support question at withemes.ticksy.com. Install

More information

User Guide. Version 1.0

User Guide. Version 1.0 User Guide Version 1.0 1 Introduction 5 Package Contents 5 System Requirements 5 How to Install 6 Uploading Theme Files 6 Activating your Theme 6 How to Create & Set your Home & Blog Page 6 Create your

More information

Amory WordPress Theme

Amory WordPress Theme This is a complete guide to help you manage the installation and setup of the Theme that you just bought. Thank you for purchasing our theme. We hope that you ll find it easy to use and customize. Please

More information

Building a Simple Theme Framework

Building a Simple Theme Framework Building a Simple Theme Framework by: Joe Casabona Who am I? Native of NYS Yankee Fan WordPress Developer Computer Nerd Star Wars Nerd Author of Building WordPress Themes from Scratch Software Reuse Some

More information

Build Site Create your site

Build Site Create your site Tutorial Activities Code o o Editor: Expression Web Focus : Base Layout, css drop down menu, jssor implementation o Facebook and twitter feeds, SEO o Submitting to a search engine Build Site Create your

More information

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018

A Guide to Using WordPress + RAVEN5. v 1.4 Updated May 25, 2018 + v 1.4 Updated May 25, 2018 Table of Contents 1. Introduction...................................................................................3 2. Logging In.....................................................................................4

More information

introduction what you'll learn

introduction what you'll learn introduction Jetpack is a plugin made by the same people that made Wordpress. By installing Jetpack you add a variety of useful modules to your Wordpress website. To use Jetpack on your website you need

More information

All India Council For Research & Training

All India Council For Research & Training WEB DEVELOPMENT & DESIGNING Are you looking for a master program in web that covers everything related to web? Then yes! You have landed up on the right page. Web Master Course is an advanced web designing,

More information

BOLT eportfolio Student Guide

BOLT eportfolio Student Guide BOLT eportfolio Student Guide Contents BOLT EPORTFOLIO STUDENT GUIDE... I BOLT EPORTFOLIO BASICS... 3 BOLT eportfolio user interface overview... 3 Dashboard... 3 My Items Page... 4 Explore Page... 5 Sharing

More information

Table of contents. DMXzone Nivo Slider 3 DMXzone

Table of contents. DMXzone Nivo Slider 3 DMXzone Nivo Slider 3 Table of contents Table of contents... 1 About Nivo Slider 3... 2 Features in Detail... 3 Reference: Nivo Slider Skins... 22 The Basics: Creating a Responsive Nivo Slider... 28 Advanced:

More information

Emmet Next Theme Documentation

Emmet Next Theme Documentation Emmet Next Theme Documentation Updated on May 24, 2018 Quick Start Guide Installation Import sample data Insert API keys Front Page Setup Front Page Customization WordPress Customizer Settings Site identity

More information

HTML 5 and CSS 3, Illustrated Complete. Unit M: Integrating Social Media Tools

HTML 5 and CSS 3, Illustrated Complete. Unit M: Integrating Social Media Tools HTML 5 and CSS 3, Illustrated Complete Unit M: Integrating Social Media Tools Objectives Understand social networking Integrate a Facebook account with a Web site Integrate a Twitter account feed Add a

More information

Static Webpage Development

Static Webpage Development Dear Student, Based upon your enquiry we are pleased to send you the course curriculum for PHP Given below is the brief description for the course you are looking for: - Static Webpage Development Introduction

More information

LearnWP 2-day Intensive WordPress Workshop. Dawn Comber, Digital Dialogues Ruth Maude, Dandelion Web Design

LearnWP 2-day Intensive WordPress Workshop. Dawn Comber, Digital Dialogues Ruth Maude, Dandelion Web Design LearnWP 2-day Intensive WordPress Workshop Dawn Comber, Digital Dialogues Ruth Maude, Dandelion Web Design How do I login? Point your browser to your website URL adding wpadmin to the end of the address

More information

Siteforce Pilot: Best Practices

Siteforce Pilot: Best Practices Siteforce Pilot: Best Practices Getting Started with Siteforce Setup your users as Publishers and Contributors. Siteforce has two distinct types of users First, is your Web Publishers. These are the front

More information

GeekLove. An Elegant WordPress Wedding Theme. Thanks for purchasing a theme from Codestag, you re awesome!

GeekLove. An Elegant WordPress Wedding Theme. Thanks for purchasing a theme from Codestag, you re awesome! GeekLove An Elegant WordPress Wedding Theme Thanks for purchasing a theme from Codestag, you re awesome! In this document we will cover the installation and use of this theme. If you have any questions

More information

Creating a Website with Wordpress

Creating a Website with Wordpress Creating a Website with Wordpress Wordpress Fundamentals Version 1.6 Fayette County Public Schools June 28, 2013 Sow-Foong Hedman Technology Web Team Contents What is Wordpress?... 4 Overview... 4 Key

More information

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age

HostPress.ca. User manual. July Version 1.0. Written by: Todd Munro. 1 P age HostPress.ca User manual For your new WordPress website July 2010 Version 1.0 Written by: Todd Munro 1 P age Table of Contents Introduction page 3 Getting Ready page 3 Media, Pages & Posts page 3 7 Live

More information

Assignment 2: Website Development

Assignment 2: Website Development Assignment 2: Website Development Overview In this second assignment, you are required to develop your personal website from scratch, based on the design document that you created in Assignment 1. You

More information

Centricity 2.0 Section Editor Help Card

Centricity 2.0 Section Editor Help Card Centricity 2.0 Section Editor Help Card Accessing Section Workspace In order to edit your section, you must first be assigned Section Editor privileges. This is done by the Director of your Site, Subsite,

More information

How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS

How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS How to use WordPress to create a website STEP-BY-STEP INSTRUCTIONS STEP 1:Preparing your WordPress site Go to the Dashboard for your new site Select Appearance > Themes. Make sure you have Activated the

More information

Installation and Activation of Foody pro theme

Installation and Activation of Foody pro theme Installation and Activation of Foody pro theme Installation 1. Install Word Press from http://codex.wordpress.org/installing_wordpress. 2. Upload via Word press Admin: - Go to your WordPress admin panel,

More information

NWIC EDITOR GUIDE August 2016

NWIC EDITOR GUIDE August 2016 NWIC EDITOR GUIDE August 2016 THEME NAME: CLEVERCOURSE logging in: GO TO nwic.edu/wp-login.php blogs.nwic.edu/wp-login.php foundation.nwic.edu/wp-login.php Please note that your Username is your full nwic.edu

More information

WCMS Responsive Design Template Upgrade Training

WCMS Responsive Design Template Upgrade Training WCMS Responsive Design Template Upgrade Training The purpose of this training session is to provide training to site owners, who are upgrading their WCMS content to the new Responsive Design (RD) template.

More information

AC CMS Opencart Extension

AC CMS Opencart Extension AC CMS Opencart Extension I. Features...2 II. Install...3 III. Upgrade...3 IV. Manage Articles...4 V. Manage Categories...6 VI. Manage Comments...7 VII. Manage Article Sets...7 VIII. Place Article Set...

More information

WordPress Manual First Year Experience

WordPress Manual First Year Experience WordPress Manual First Year Experience May 18, 2015 Table of Contents Who should use this manual... 3 Signing into WordPress... 3 The WordPress Dashboard and Left-Hand Navigation Menu... 4 The Home Page

More information

Page 1 of 11 Wordpress Sites How-to Guide. Introduction to Blogging -

Page 1 of 11 Wordpress Sites How-to Guide. Introduction to Blogging - Page 1 of 11 Wordpress Sites How-to Guide General Information: Version 5 Updated 1/04/10 Introduction to Blogging - http://codex.wordpress.org/introduction_to_blogging Tutorials from Absolute - http://absolutemg.com/support

More information

RRJ.ca Uploading content and managing the site

RRJ.ca Uploading content and managing the site RRJ.ca Uploading content and managing the site Logging In: To log in, go to: http://rrj.ca/wp admin You will need to use your FCAD login credentials. The first time you log in a WordPress user account

More information

STRANDS AND STANDARDS

STRANDS AND STANDARDS STRANDS AND STANDARDS Course Description Web Development is a course designed to guide students in a project-based environment in the development of up-to-date concepts and skills that are used in the

More information

jquery & Responsive Web Design w/ Dave #jqsummit #rwd

jquery & Responsive Web Design w/ Dave #jqsummit #rwd jquery & Responsive Web Design w/ Dave Rupert @davatron5000 #jqsummit #rwd I work at Paravel. http://paravelinc.com && @paravelinc I host the ATX Web Show. http://atxwebshow.com && @atxwebshow I make tiny

More information

Doing More with WordPress

Doing More with WordPress Doing More with WordPress This document gives an overview of the different ways you can improve the appearance and functionality of your website using features built-in to WordPress as well as the plugins

More information

Ace Corporate Documentation

Ace Corporate Documentation Ace Corporate Documentation Introduction Welcome To Ace Corporate! We would like to thank you for donwloading Ace Corporate, Business WordPress theme. It is the lite version of Ace Corporate Pro. Before

More information

2004 WebGUI Users Conference

2004 WebGUI Users Conference WebGUI Site Design 2004 WebGUI Users Conference General Rules of Web Design Content is King good content is more important than anything else. keeps people interested. even if your design is bad, content

More information

VEGA Version /27/2017

VEGA Version /27/2017 Version 2.2.1 01/27/2017 Vega Pro Check out the pro version at https://www.lyrathemes.com/vega-pro INSTALLING WORDPRESS INSTALLING THE THEME Using the Administration Panel Using cpanel Manually Using FTP

More information

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide

BindTuning Installations Instructions, Setup Guide. Invent Setup Guide BindTuning Installations Instructions, Setup Guide Invent Setup Guide This documentation was developed by, and is property of Bind Lda, Portugal. As with any software product that constantly evolves, our

More information

ICDPPC.ORG - WEBSITE MANUAL

ICDPPC.ORG - WEBSITE MANUAL ICDPPC.ORG - WEBSITE MANUAL Table of Contents LOGIN TO WEBSITE... 4 GENERAL WEBSITE INSTRUCTIONS... 5 POST & PAGE CONTENT... 6 ADD DOCUMENTS ON PAGES... 7 ADD DOCUMENTS - TRANSLATION VERSIONS... 11 ADD

More information

Modular: Shopify Theme

Modular: Shopify Theme Modular: Shopify Theme Table of Contents Introduction 2 Top Bar 2 Header/Branding 3 Main Navigation 3 Backgrounds 4 Global Colors 4 Fonts 4 Home Slideshow 5 Home 6 Collection Pages 6 Product Pages 7 Blog

More information

Website Design (Weekend) By Alabian Solutions Ltd , 2016

Website Design (Weekend) By Alabian Solutions Ltd ,  2016 Website Design (Weekend) By Alabian Solutions Ltd 08034265103, info@alabiansolutions.com www.alabiansolutions.com 2016 TECHNOLOGIES DATE TIME Day1 Section 1 HTML Part 1 12am 5pm Intro to the web The web

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42

Table of content. Creating signup form Associating automation tools to signup form Signup form reports...42 A User Guide Signup forms are the most popular tools for building a subscriber database. They let your website visitors become subscribers by entering basic details such as name and email address. The

More information

Narya WordPress Theme

Narya WordPress Theme This is a complete guide to help you manage the installation and setup of the Theme that you just bought. Thank you for purchasing our theme. We hope that you ll find it easy to use and customize. Please

More information

ACE #CT01756 Intro to WordPress By Adrian Mikeliunas SESSION# 2 of 6

ACE #CT01756 Intro to WordPress By Adrian Mikeliunas   SESSION# 2 of 6 WordPress Administration ACE #CT01756 Intro to WordPress By Adrian Mikeliunas http://learnwp.us/week2/ SESSION# 2 of 6 Week 2 Agenda Understanding the Dashboard Setting up User accounts Managing Pages

More information

Thursday, 26 January, 12. Web Site Design

Thursday, 26 January, 12. Web Site Design Web Site Design Not Just a Pretty Face Easy to update Responsive (mobile, tablet and web-friendly) Fast loading RSS enabled Connect to social channels Easy to update To me, that means one platform, WordPress.

More information

Nilmini Theme Documentation

Nilmini Theme Documentation Nilmini Theme Documentation 1. Theme-Installation After downloading the Nilmini theme.zip folder on your WordPress blog just log into your WordPress admin panel and go to design / themes. Next to the tab

More information

To upgrade to ifeature Pro visit:

To upgrade to ifeature Pro visit: 1 ifeature Free Documentation for ifeature v1.0.7 (last updated 4/26/2011) TABLE OF CONTENTS: Topic Page(s) Installing ifeature 2 Templates and Widgets 3 imenu 4 ifeature Settings 5 General Settings 6

More information

Website/Blog Admin Using WordPress

Website/Blog Admin Using WordPress Website/Blog Admin Using WordPress Table of Contents How to login... 2 How to get support... 2 About the WordPress dashboard... 3 WordPress pages vs posts... 3 How to add a new blog post... 5 How to edit

More information

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016

RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 RC Justified Gallery User guide for version 3.2.X. Last modified: 06/09/2016 This document may not be reproduced or redistributed without the permission of the copyright holder. It may not be posted on

More information

JSN Decor 2 Customization Manual Before We Start

JSN Decor 2 Customization Manual Before We Start JSN Decor 2 Customization Manual Before We Start The first thing we would like to say is this guide is not intended to cover everything you might want to customize the template. Here we disclose only the

More information

Creating/Updating Your Webpage

Creating/Updating Your Webpage Creating/Updating Your Webpage Getting Started: 1. Go to the website provided previously. 2. Log in with your username & password. 3. Click on your school name, then click on Content Management. 4. Find

More information

Xerte. Guide to making responsive webpages with Bootstrap

Xerte. Guide to making responsive webpages with Bootstrap Xerte Guide to making responsive webpages with Bootstrap Introduction The Xerte Bootstrap Template provides a quick way to create dynamic, responsive webpages that will work well on any device. Tip: Webpages

More information

PRESENTS. IEEE WordPress Template Tutorial

PRESENTS. IEEE WordPress Template Tutorial PRESENTS IEEE WordPress Template Tutorial Table of Contents What is the IEEE WP section template? Overview of IEEE template Plugin tutorials Events (Calendar Plugin) Contact Form 7 Easing Slider lite Gallery

More information

OU Campus Training. Web Services Unit

OU Campus Training. Web Services Unit OU Campus Training Web Services Unit http://www.sjsu.edu/webservices Last Modified: December 13, 2011 Objectives Introduction to new templates Login to your website Make basic edits to your webpage using

More information

USING WORDPRESS FOR YOUR PROFESSIONAL PORTFOLIO

USING WORDPRESS FOR YOUR PROFESSIONAL PORTFOLIO CREATING AN ACCOUNT Using WordPress USING WORDPRESS FOR YOUR PROFESSIONAL PORTFOLIO Mandy Anger Jen Jenkins Jenn Mitchell Sara Quintero 1 Progress Bar WELCOME Using WordPress Welcome! Why create an electronic

More information

Website Design (Weekday) By Alabian Solutions Ltd , 2016

Website Design (Weekday) By Alabian Solutions Ltd ,  2016 Website Design (Weekday) By Alabian Solutions Ltd 08034265103, info@alabiansolutions.com www.alabiansolutions.com 2016 TECHNOLOGIES DATE TIME Day 1 HTML Part 1 Intro to the web The web Clients Servers

More information

DOCUMENTATION OLAM WORDPRESS THEME

DOCUMENTATION OLAM WORDPRESS THEME DOCUMENTATION OLAM WORDPRESS THEME INDEX Theme installation 2 Setting up website 3 Sidebars & widgets 5 Working with EDD 8 Working with Unyson 8 Content Elements 9 Media elements 9 Olam elements 10 Creating

More information

Masterstudy - Education Center WordPress Theme

Masterstudy - Education Center WordPress Theme A short guide and general information to help you get to know your new theme. Above all, I would like to thank you for purchasing this theme, your contribution is very much appreciated. This document covers

More information

JSN Force 2 Customization Manual Before We Start

JSN Force 2 Customization Manual Before We Start JSN Force 2 Customization Manual Before We Start The first thing we would like to say is this guide is not intended to cover everything you might want to customize the template. Here we disclose only the

More information

ACDSee 10. ACDSee 10 : Creating a small slide show on your desktop. What is ACDSee Showroom? Creating showroom slide shows

ACDSee 10. ACDSee 10 : Creating a small slide show on your desktop. What is ACDSee Showroom? Creating showroom slide shows : Creating a small slide show on your desktop ACDSee Showroom is a fun widget that you can use to showcase and enjoy your photos. It creates a framed slide show on your desktop that scrolls through your

More information

DOCUMENTATION. Table of content : GETTING STARTED. First Step. Theme Installation. Theme License. Importing Demo Data.

DOCUMENTATION. Table of content : GETTING STARTED. First Step. Theme Installation. Theme License. Importing Demo Data. DOCUMENTATION Table of content : GETTING STARTED First Step Theme Installation Theme License Importing Demo Data Setting Up Menu GENERAL SETTINGS Stretched or boxed layout Header Variations Logo Settings

More information

Creating a Website Using Weebly.com (July 2012 Update)

Creating a Website Using Weebly.com (July 2012 Update) Creating a Website Using Weebly.com (July 2012 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

Jobmonster Document. by NooTheme

Jobmonster Document. by NooTheme Jobmonster Document by NooTheme Jobmonster Document GENERAL... 6 Jobmonster Instruction... 6 WordPress Information... 6 Download Theme Package... 6 Requirement For Jobmonster... 7 INSTALLATION... 7 Install

More information