Thank you for using Punjab Press! We have spent a very long time developing this theme and the framework which it is built upon. We've done our very best to make it as expensive and feature-rich as possible, while also keeping it incredibly easy and slick to use. We've also worked hard to improve the ease of customisation, and have provided a Documentation reference for anyone who wishes to extend/modify & understand the theme and its Scripts. I'd be glad to help you if you have any questions relating to this theme. I'll do my best to assist you. If you have any more general question relating to this themes, you might consider visiting the forums and asking your question.
Current Version | v5.0 |
Doc Version | v4.0 |
Created on | Feb. 24, 2014 |
Modify on | Jun. 16, 2015 |
Copyright | Design Devta | Blogger Shapes |
Designer | Harman Singh Hira |
[email protected] | |
Website | www.HSinghHira.Blospot.Com |
We would happily welcome feedback from you on how, if anywhere, you would like this theme and documentation improved. If you would find anything a little bit easier and more helpful if we went into more detail, or explained something a little better - we'd be happy to hear it. We want Punjab Press to be the best theme on the market! If you have any comments, please mail us via the form on http://J.mP/HSinghHira_Contact.
Here you can find the changelog for updates to Punjab Press. We will provide a full list of the changes made, be it additions, improvements, or bug fixes. If you need any more details for an update, then please log a topic in Forums.
Initial release version.
This Theme is made for Blogger platform only. Theme installation on blogger is very easy task. A beginner with Zero knowledge can easily install theme on Blogger.
Here is a brief step by step on how to install Blogger Theme:
After installing the theme, this it the minimum setting to make all widget works fine in this themes.
This to make comment area like the Demo and make Emotion show
This to make recent comment, Search Result, Featured Post, and Post by Label work fine
This is to make your Blog for better SEO.
1. If yours post have image uploaded on blogspot you can choose SHORT. but if yours post just have image from third party image hosting you must choose Full.
2. Blogger feed must be not redirect to other feed site like Feedburner
3. Yours blog or website not Private
4. Write Post Description also while write new post.
This is to make Chat turn On or Off for your Blog.
This is the main setup where all chat conversation is stored for every Punjab Press user
If you want to use public Database instead of creating or using your own then read below:
If you want to create your own database then read below steps carefully:
This is required for all buyers to choose their own Header Text.
This is required for all buyers to choose their own Chat Limit.
To Edit Date Date (Month Name) in this theme you can follow this step:
datetime();
datetime({
months:["January","February","March","April","May","June","July","August","September","October","November","December"]
});
To add Featured Post widget follow this step
<div id="featpost"></div>
<script type='text/javascript'>
jQuery("#featpost").AutofeaturedPost({
MaxPost:5
});
</script>
<div id="ID_Place_To_Load_Plugin"></div>
<script type='text/javascript'>
jQuery("#ID_Place_To_Load_Plugin").AutofeaturedPost({
blogURL: "",
MaxPost: 5,
ImageSize: 600,
ShowDate: true,
ShowComment: true,
pagination: true,
thumbnails: true,
loader:"pie",
height:"50%",
Random: true,
tagName: false
});
</script>
<div id="ID_Place_To_Load_Plugin"></div>
and
jQuery("#ID_Place_To_Load_Plugin").AutofeaturedPost();
jQuery("#ID_Place_To_Load_Plugin").AutofeaturedPost({
MaxPost: 8,
ShowDate: false,
ShowComment: false,
RandompostActive: false,
tagName: "Movies"
});
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
MaxPost | Maximum number artikel will show on Featured Post |
ImageSize | Post Image size (in pixel) |
ShowDate | If you want to show post date (true or false) |
ShowComment | If you want to show Comment number (true or false) |
pagination | If you want to show slideshow pagination |
thumbnails | If you want to show slideshow Thumbnails |
loader | kind of loader style : "pie", "bar", "none" |
height | Slideshow height : "50%" mean if will resize 50% from slideshow with if you want make it fix to 300px just change with "300px" |
Random | default true. It's will show article ramdomly. If want to show Recent Post just change to false |
tagName | If you want to show Featured Post by the Label. Example: to show featured post from Sports Label just write like this tagName:"Sports" |
To Create Manual Slide Show follow this step
1. Recommended Image Size 670px x 280px.
2. If you want to Show 5 Images in Slideshow then add Image Widget 5 times with different Images and Links.
manualfeaturedPost();
manualfeaturedPost({
height:"50%",
loader:"pie",
pagination:true,
thumbnails:true
});
Property | Description |
---|---|
pagination | If you want to show slideshow pagination |
thumbnails | If you want to show slideshow Thumbnails |
loader | kind of loader style : "pie", "bar", "none" |
height | Slideshow height : "50%" mean if will resize 50% from slideshow with if you want make it fix to 300px just change with "300px" |
To add Horizontal Post Widget follow this step
<div id="horizontalpost2"></div>
<script type='text/javascript'>
jQuery("#horizontalpost2").RecentPostbyTag({
MaxPost:7,
tagName:"Your_TagName",
postType: "h",
animated:true
});
</script>
<div id="ID_Place_To_Load_Plugin"></div>
<script type='text/javascript'>
jQuery("#ID_Place_To_Load_Plugin").RecentPostbyTag({
blogURL: "",
ShowDesc: false,
ShowDate: true,
ShowComment: true,
Random: false,
AjaxLoad: true,
animation:"slide",
postType: "h",
animated: false,
sliderType: "c",
tagName: false
});
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
ShowDesc | If you want to show or hide post description (work in vertical and horizontal) (true or false) |
ShowDate | If you want to show or hide date true to show or false to hide |
ShowComment | If you want to show or hide comment number true to show or false to hide |
Random | If you want to generate random post true to random or false to recent. if you set true AjaxLoad will not work (same like AjaxLoad set false). |
AjaxLoad | If you'r want More Button will load more from next page and add after last post. If you set false page will redirect if More Button clicked |
postType | There are Three kind of PostType: "v" (vertical Post), "h" (horizontal Post) , "g1" (Gallery Post 1), "g2" (Gallery Post 2) and "s" (Slider Post) |
animated | make it have animation effect (for Vertical and Horizontal Post) |
sliderType | make it show carousel slide show or Slide show : "c" (Carousel Slider) or "f" (full Slideshow Slider) |
animation | Full Slideshow effect : "slide" or "fade" |
tagName | If you want to show Post by the Label. Example: to show post from Sports Label just write like this tagName:"Sports" |
To Create Vertical Post Widget follow this step
<div id="verticalpost1"></div>
<script type='text/javascript'>
jQuery("#verticalpost1").RecentPostbyTag({
MaxPost:6,
tagName:"Your_TagName",
postType: "v"
});
</script>
<div id="ID_Place_To_Load_Plugin"></div>
<script type='text/javascript'>
jQuery("#ID_Place_To_Load_Plugin").RecentPostbyTag({
blogURL: "",
ShowDesc: false,
ShowDate: true,
ShowComment: true,
Random: false,
AjaxLoad: true,
animation:"slide",
postType: "v",
animated: false,
sliderType: "c",
tagName: false
});
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
ShowDesc | If you want to show or hide post description (work in vertical and horizontal) (true or false) |
ShowDate | If you want to show or hide date true to show or false to hide |
ShowComment | If you want to show or hide comment number true to show or false to hide |
Random | If you want to generate random post true to random or false to recent. if you set true AjaxLoad will not work (same like AjaxLoad set false). |
AjaxLoad | If you'r want More Button will load more from next page and add after last post. If you set false page will redirect if More Button clicked |
postType | There are Three kind of PostType: "v" (vertical Post), "h" (horizontal Post) , "g1" (Gallery Post 1), "g2" (Gallery Post 2) and "s" (Slider Post) |
animated | make it have animation effect (for Vertical and Horizontal Post) |
sliderType | make it show carousel slide show or Slide show : "c" (Carousel Slider) or "f" (full Slideshow Slider) |
animation | Full Slideshow effect : "slide" or "fade" |
tagName | If you want to show Post by the Label. Example: to show post from Sports Label just write like this tagName:"Sports" |
To add Motion Post widget follow this step
<div id="carouselpost1"></div>
<script type='text/javascript'>
jQuery("#carouselpost1").RecentPostbyTag({
MaxPost:9,
ImageSize:"s180-p",
postType:"s",
tagName:"Your_TagName"
});
</script>
<div id="ID_Place_To_Load_Plugin"></div>
<script type='text/javascript'>
jQuery("#ID_Place_To_Load_Plugin").RecentPostbyTag({
blogURL: "",
ShowDesc: false,
ShowDate: true,
ShowComment: true,
Random: false,
AjaxLoad: true,
animation:"slide",
postType: "s",
animated: false,
sliderType: "c",
tagName: false
});
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
ShowDesc | If you want to show or hide post description (work in vertical and horizontal) (true or false) |
ShowDate | If you want to show or hide date true to show or false to hide |
ShowComment | If you want to show or hide comment number true to show or false to hide |
Random | If you want to generate random post true to random or false to recent. if you set true AjaxLoad will not work (same like AjaxLoad set false). |
AjaxLoad | If you'r want More Button will load more from next page and add after last post. If you set false page will redirect if More Button clicked |
postType | There are Three kind of PostType: "v" (vertical Post), "h" (horizontal Post) , "g1" (Gallery Post 1), "g2" (Gallery Post 2) and "s" (Slider Post) |
animated | make it have animation effect (for Vertical and Horizontal Post) |
sliderType | make it show carousel slide show or Slide show : "c" (Carousel Slider) or "f" (full Slideshow Slider) |
animation | Full Slideshow effect : "slide" or "fade" |
tagName | If you want to show Post by the Label. Example: to show post from Sports Label just write like this tagName:"Sports" |
To Create Animated Post Widget follow this step
<div id="featuredpostside"></div>
<script type='text/javascript'>
FeaturedPostSide({
MaxPost:8,
ImageSize:300,
tagName:"Your_TagName"
});
</script>
<div id="featuredpostside"></div>
<script type='text/javascript'>
FeaturedPostSide({
blogURL:"",
MaxPost:8,
ImageSize:300,
interval:5000,
autoplay:true,
pBlank:"http://1.bp.blogspot.com/-htG7vy9vIAA/Tp0KrMUdoWI/AAAAAAAABAU/e7XkFtErqsU/s1600/grey.gif",
MonthNames:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],
tagName:false
});
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
MaxPost | Maximum number of article will be show |
ImageSize | Image Format use Picasa/Blogspot image format: To make square image (200x200) Image Format use like this "300". image will be crop to make it square. |
Interval | Gap time for its Animation (in milliseconds) |
Autoplay | Do you want Animation? Set it to "true" if yes or "false" if no. |
pBlank | Backup image if post don't have image store on blogspot or picasa web |
MonthNames | Format months name |
tagName | If you want to show Post by the Label. Example: to show post from Sports Label just write like this tagName:"Sports" |
To add Gallery Post widget follow this step
<div id="gallery1post1"></div>
<script type='text/javascript'>
jQuery("#gallery1post1").RecentPostbyTag({
MaxPost:13,
tagName:"Your_TagName",
postType: "g1"
});
</script>
To add Mini Slider Post widget follow this step
<div id="slider-rotator" class="loading"/>
<script>
makeSlider({});
</script></div>
To Create Twitter Widget follow this step
<div id="BBTwitter"></div>
<script>
$(document).ready(function() {
$('#BBTwitter').BBTwitter({
username:"Your-Username"
});
});
</script>
<div id="BBTwitter"></div>
<script>
$(document).ready(function() {
$('#BBTwitter').BBTwitter({
username:"Your-Username",
limit:5,
profile_image:true,
show_time:true,
show_media:false
});
});
</script>
Property | Description |
---|---|
username | Enter your Twitter Username |
limit | Limit of the tweets you want to display in widget |
profile_image | true or false to show your Twitter Profile picture |
show_time | true or false to show your Tweet timimg |
show_media | true or false to show media for your Twitter. |
This way is only Google Adsense Users.
<!-- Advertisement Codes Here -->
<div class='error-custom'>
<h2>404 Not Found</h2>
<p class='error-body'>We're sorry but we could not find the page you are looking for.<br/>
This may happen if you have entered site url incorrectly or this page doesn't exist anymore.</p>
<p>You can try searching page again or go back to home</p>
<form action='/search' id='searchform' method='get'>
<input id='s' name='q' onblur='if (this.value == "") {this.value = "Search...";}' onfocus='if (this.value == "Search...") {this.value = "";}' type='text' value='Search...'/>
<input id='searchsubmit' type='submit' value='Go'/>
</form>
</div>
If don't know how to make New Page Follow this step.
<div id="table-outer"><table border="0"><tr><td><label>Sort List by:</label></td><td><select id="orderFeedBy"><option value="published" selected>Latest Published</option><option value="updated">Latest Update</option></select></td></tr><tr><td><label>Sort List by Category:</label></td><td><span id="labelSorter"><select disabled><option selected>Loading...</option></select></span></td></tr><tr><td><label>Search with Keyword:</label></td><td><form id="postSearcher"><input type="text"/></form></td></tr></table></div><header id="resultDesc"></header><ul id="feedContainer"></ul><div id="feedNav">Loading...</div>
If don't know how to make New Page Follow this step.
<div id="tabbed-toc"><span class="loading">Loading...</span></div>
<script type="text/javascript">
var tabbedTOC = {};
</script>
<div id="tabbed-toc"><span class="loading">Loading...</span></div>
<script type="text/javascript">
var tabbedTOC = {
blogUrl: "",
showDates: false,
showSummaries: false,
numChars: 200,
showThumbnails: false,
thumbSize: 40,
noThumb: "http://3.bp.blogspot.com/-vpCFysMEZys/UOEhSGjkfnI/AAAAAAAAFwY/h1wuA5kfEhg/s72-c/grey.png",
monthNames: ["January","February","March","April","May","June","July","August","September","October","November","December"],
newTabLink: true,
sortAlphabetically: true,
showNew: 7,
newText: " - <em style='color:red;'>New!</em>"
};
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
showDates | "true" to show the post date or "false" to hide it |
showSummaries | "true" to show the post Summery or "false" to hide it |
numChars | Number of summary chars |
showThumbnails | "true" to show the posts thumbnails or "false" to hide it (Not recommended) |
thumbSize | Thumbnail size |
noThumb | No thumbnail Image URL |
monthNames | Change Month Names language with your own lang. |
newTabLink | "true" to open link in new window or "false" to open links in parent window |
sortAlphabetically | "true" to "false" to sort posts by published date |
showNew | "false" to hide the "New!" mark in most recent posts, or define how many recent posts to show |
newText | HTML for the "New!" text |
If don't know how to make New Page Follow this step.
<div id='PP_ContactPage'><form name="contact-form"><input id='ContactForm1_contact-form-name' name='name' placeholder="Name" value='' type='text' /><input id="ContactForm1_contact-form-email" name="email" placeholder="Email" type="text" value=""/><textarea cols="25" id="ContactForm1_contact-form-email-message" name="email-message" placeholder="Message" rows="5"></textarea><input class="btn medium green" id="ContactForm1_contact-form-submit" type="button" value="Send Message Now" style="width:100%;height:50px"/><div style="text-align: center; max-width: 100%;"><p class="contact-form-error-message" id="ContactForm1_contact-form-error-message"></p><p class="contact-form-success-message" id="ContactForm1_contact-form-success-message"></p></div></form></div>
Summary and Load more image use Official Blogspot Thumbnail. It mean the image must upload to blogspot for make it show on home page.
var configSummary = {
thumbnailSize: "s180-c",
summaryLength: 200,
slideffect: true,
maxImage:5,
slideSpeed: 3000,
defaultNavigation:"LoadMore",
defaultView:"grid",
postPerPage:6,
numshowpage:3
};
Property | Description |
---|---|
thumbnailSize | Image Format use Picasa/Blogspot image format: To make square image (180x180) Image Format use like this "s180-c" or "s180-p". image will be crop to make it square. Blogspot Image format also look like this : "s180" (if image landscape width will 180px. If image Portrait height will 180px), "w180" (image width will 180px) or "h180" (image height will 180px) |
summaryLength | Define the summary length |
slideffect | If your post have image more than you set this true image will become slideshow. note: this setting must be same with Load More Post or Page Navigation |
maxImage | Maximum image add to the sildeshow |
slideSpeed | Set the speed of the slideshow cycling, in milliseconds |
defaultNavigation | default home page navigation: "LoadMore" or "PageNavi" |
defaultView | This will setup view mode: you can choose "grid" to show your's post on grid mode or "list" to show your's post on list mode |
postPerPage | Number Post Will show if next Page Number Click. Note must be same with "Show at most" on Blogger Setting |
numshowpage | Number Page Number will Show |
<div id="rcentcomnets"></div>
<script type='text/javascript'>
RecentComments();
</script>
<div id="rcentcomnets"></div>
<script type='text/javascript'>
RecentComments({
blogURL:"",
numComments:4,
characters:100,
id_containrc:"#rcentcomnets",
avatarSize:50,
Showimage:true,
defaultAvatar:"http://4.bp.blogspot.com/-AEWksK942OE/UFiyLzXJhiI/AAAAAAAAFKE/jBegaGPClxI/s70/user-anonymous-icon.png",
maxfeeds:50,
adminBlog:""
});
</script>
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
numComments | maximum number of recent comment |
characters | Number of summary characters to show. if set 0, will not show summary |
id_containrc | ID of div where the recent comment will be display must add this #, Example: if want to show in <div id="rcentcomnets"></div> write like this "#rcentcomnets" |
avatarSize | Image thumbnail size/avatar size |
Showimage | Show or hide the avatar. Value : true or false |
defaultAvatar | Backup image if comment author don't have avatar image |
maxfeeds | Maximum feed to load |
adminBlog | Control to show or hide author/admin comment. ex: if you don't want to show your comment, simply just write yours blogger name like this adminBlog:"Harman Singh Hira" |
searchxx({summaryLength:100, scrthumbSize:50});
searchxx({
blogURL:"",
srcBlank:"http://1.bp.blogspot.com/-htG7vy9vIAA/Tp0KrMUdoWI/AAAAAAAABAU/e7XkFtErqsU/s1600/grey.gif",
findText:"Search results for keyword",
NotfindText:"No result!",
Showthumb:true,
LoadingText:"Searching...",
summaryLength:100,
scrthumbSize:50
});
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load. |
srcBlank | Backup image if post don't have image |
findText | Sentence if founded post by the keyword |
NotfindText | Text if no post founded |
Showthumb | Show or hide the post thumbnail. Value : true or false |
LoadingText | Text to show went searching |
summaryLength | Length of summary characters |
scrthumbSize | Size of thumbnail image, size in pixel |
emoticonx({
emoRange:"#comments p, div.emoWrap",
putEmoAbove:"iframe#comment-editor",
topText:"Click to see the code!",
emoMessage:"To insert emoticon you must added at least one space before the code."
});
This Code you will found twice
Property | Description |
---|---|
emoRange | Where the emoticon will show/work |
putEmoAbove | Where the emoticon sample will place |
topText | Sentence below the emoticon sample |
emoMessage | Sentence below the emoticon sample and alert box |
NewsTicker();
NewsTicker({
blogURL: "",
MaxPost: 10,
Speed: 0.10,
titleText: "Latest",
tagName: false,
MonthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
});
Property | Description |
---|---|
blogURL | Yours blog URL or you can leave it blank to load where this script load |
MaxPost | Maximum number artikel will show on News Ticker |
Speed | Speed each artikel effect |
titleText | News Ticker Title Text |
tagName | If you want to show News Ticker by the Label. Example: to show post from Sports Label just write like this tagName:"Sports" |
MonthNames | Format months name |
Blogger Customize will work if Blogger Mobile Template Enabled before upload this Theme. After customize yours template you can disable Blogger Mobile Template but it will make Blogger Customize not work
Just select or upload imagge to set as background image or you can also choose any color for background.
Property | Description |
---|---|
Header Title | This for setting the Header Font, Description Font, Header Color and Description Color |
Top Navigation | Top Navigation Text Color, Navigation Background Color, and Selected/current link Color |
Middle Navigation 1 | Background color, Shadow color and Selected/current link color |
Middle Navigation 2 | Font type, Sub Menu background color, Link Color |
Middle Navigation 3 | Responsive Button Color, Responsive Shadow color, Responsive Background Color |
Content Area | Font type, Background color, Text Color, Box Shadow Color |
News Ticker | Border Color, Latest Background Color, Latest Text Color |
Sidebar | Sidebar Border Color, Sidebar Background Color, and Sidebar Text Color |
Sidebar Tab | Tab Background Color, Tab Selected color, Tab Text color |
Main Area 1 | Heading font type, Post font type, Heading font color, Post text color |
Main Area 2 | Button/Date Background color, Button/Date Hover Color, Button/date Text Color |
Back top Button | Back top Background color and Hover Color |
Footer Area 1 | Footer heading font type, Heading color, Footer Text color |
Footer Area 2 | Footer Background color and Border top Color |
Search Box | Search Box background Color, Text Color, Box Result Background Color, Box Result Text Color |
Comment Area | Border Color, Reply Box Background Color, Reply Box Shadow Color |
Post Footer | Border top Color, Background color |
Slideshow | Slideshow title font type, Text Color, Title Background color, Description Background color |
Body Background Color | Main body background color |
Link Color | Main link color |
Visited Link color | main visited link color |
Image Border Color | Border of image color |
Heading Font | Heading Font type |
Post Title Color | Post Title color or artikel |
var Alldefaultconfig = {
MaxPost:5,
MoreText: "Load more posts",
monthName: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
timemonthName: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
timeFormat:"12",
viewMoreText: "View More About",
BackupImage: "http://1.bp.blogspot.com/-htG7vy9vIAA/Tp0KrMUdoWI/AAAAAAAABAU/e7XkFtErqsU/s72-c/grey.gif",
summaryLength:100,
FirstImageSize:"s220-p",
ImageSize:"s70-p",
slideshowSpeed:5000,
RandomTitle:"Random Posts",
RecentTitle:"Recent Posts",
RelatedTitle:"Related Posts",
RelatedStyle:"carousel",
CommentMode:"blogger",
redirectMobile:false,
transitionStyle:"backSlide"
};
Property | Description |
---|---|
MaxPost | Default Maximum Post (Recent Post by Tag,RelatedPost,AutoFeaturePost) |
MoreText | Define Load More Text if Recent Post |
monthName | Month Name format (Recent Post by Tag, Recent Comment, AutoFeatured Post, Related Post, News Ticker) |
timemonthName | Month Name Format for Top navigation Date Time Widget |
timeFormat | Time Format for Top navigation Date Time Widget |
viewMoreText | Define More Text (Recent Post by Tag and JSON Search) |
BackupImage | Backup image if post don't have image |
summaryLength | Default Summary Length (Recent Post by Tag, Related Post, JSON Search,AutoFeaturePost) |
FirstImageSize | Default First Image Size in Recent Post by Tag (blogger/blogspot format).Image Format use Picasa/Blogspot image format: To make square image (200x200) Image Format use like this "s200-c" or "s200-p". image will be crop to make it square. Blogspot Image format also look like this : "s200" (if image landscape width will 200px. If image Portrait height will 200px), "w200" (image width will 200px) or "h200" (image height will 200px) |
ImageSize | Default Image Size in Recent Post by Tag (blogger/blogspot format). Image Format use Picasa/Blogspot image format: To make square image (200x200) Image Format use like this "s200-c" or "s200-p". image will be crop to make it square. Blogspot Image format also look like this : "s200" (if image landscape width will 200px. If image Portrait height will 200px), "w200" (image width will 200px) or "h200" (image height will 200px) |
slideshowSpeed | Default Slideshow Speed in milisecond (Featured Post, Slider Post on RecentPost by Tag ) |
RandomTitle | Define Random Post Title (if Random Post widget don't have title) |
RecentTitle | Define Recent Post Title |
RelatedStyle | Related post style: there are two related post style "carousel" or "normal" style |
RelatedTitle | Define Related Post Title |
CommentMode | Default Comment mode: "blogger" or "facebook" or "disqus" |
redirectMobile | enable or disable redirect Blogger Mobile version. true to enable, false to disable |
transitionStyle | slider effect: "fade","backSlide","goDown",or "fadeUp". this option just for lightweight version. |
<Variable name="startSide" description="Side where text starts in blog language" type="automatic" default="left" value="left"/>
<Variable name="endSide" description="Side where text ends in blog language" type="automatic" default="right" value="right"/>
<Variable name="startSide" description="Side where text starts in blog language" type="automatic" default="right" value="right"/>
<Variable name="endSide" description="Side where text ends in blog language" type="automatic" default="left" value="left"/>
<meta content='FB_APP_ID' property='fb:app_id'/>
<meta content='FB_ID' property='fb:admins'/>
<div id='facebook-comment-appid' style='display:none'>FB_APP_ID</div>
<div id='disqus-shortname' style='display:none'>DISQUS_SHORT_NAME</div>
$0
Non-Removal Credits
Public Database
Default Heder Text
Default Chat Limit
Encyrpted Scripts
Download
$29.9
Removal Credits
Your own Database
Custom Header Text
Custom Chat Limit
Encyrpted Scripts
Purchase
$55.5
Removal Credits
Your own Database
Custom Header Text
Custom Chat Limit
Decyrpted Scripts
Purchase
Top Social Icon
To Edit Social Icon in this theme you can follow this step:
<ul class='sociico' id='icon-socialmn'> <li class='sotw'><a href='#' target='_blank'>twitter</a></li> <li class='sofb'><a href='#' target='_blank'>facebook</a></li> <li class='sogo'><a href='#' target='_blank'>google</a></li> <li class='sorss'><a href='#' target='_blank'>rss</a></li> <li class='solinkn'><a href='#' target='_blank'>linkedin</a></li> <li class='sodrib'><a href='#' target='_blank'>dribbble</a></li> <li class='sopint'><a href='#' target='_blank'>pinterest</a></li> </ul>