Thursday 11 January 2018

Tumblr Theme


A minimalist, all-in-one contained theme packed with plenty of Customisation options. Features include:
  • Multiple post widths ranging from 250px to 500px 
  • 6 Custom Links; customisable icon links. 
  • Fixed top bar on scroll 
  • All-in-one: additional tabs for askbox, info + navi, and blogroll 
  • Additional options: Photoset spacings, post margins, colours, font size, posts / caption display, pagination options, header image. 
To edit your About Me section: Go to ‘edit html’ in your Customise panel and search “write your info here”. Basic HTML tags are included.

DEMO

How To Create A New Blog


So you want to create your own blog? Awesome! I’d love to help you get online and make your own little corner of the internet.

Before getting started, the first thing you need to decide is which blogging site to use. I create themes for two different blogging sites

  1. Wordpress.org
  2. Blogspot.com
I’ve compared the two blogging platforms below so that you can decide which is best for you.

WordPress.org

Description

WordPress is the world leading website/blogging site, currently powering 29% of all websites (as of 13th Dec 2017). There are different versions of WordPress available, but if you’d like to use our themes and monetize your blog then you would need to use the full version (WordPress.org).

Pros: Use any of the thousands of free plugins from www.wordpress.org/plugins. Almost infinitely flexible. Our WordPress themes all come with multiple layout options and lots of custom widgets pre-installed. Excellent SEO options.
Cons: Requires an annual hosting charge of around $50 USD per year.

How to create a WordPress blog

Creating a WordPress blog takes a few minutes. Follow the steps below to create your blog:

  1.  Purchase a WordPress hosting package from this page. The ‘StartUp’ plan will be suitable for most people. 
  2. Once you login to your Customer Area for the first time, you will be asked if you want to setup a new website (example below). Select WordPress and the page will expand asking you to fill in your information. Add your email, admin username and password and click on the green Confirm button.

That’s it! Your new site will now be online and you can log in to get started. You can now purchase any of my WordPress themes inc hosting for one year + setup $100.

Blogger.com (AKA Blogspot)

Description

Blogger/Blogspot is a free blogging platform owned by Google.
Pros: Free to use.
Cons: Less customisable. Restrictions on the type of content you can create. Cannot install plugins to extend functionality.

How to create a Blogger blog

You can create a Blogger blog at any time by going to www.blogger.com. Simply sign in and follow the on screen instructions to get started. It takes a few minutes, then you can purchase any template from this page.


Which platform do we recommend? 

WordPress is generally a much better system which allows you to take full control of your blog. However, Blogger is also a great platform if you’re just starting out.

The deciding factor really comes down to your budget. If you can afford the annual hosting charge (roughly $50 USD per year) then WordPress will be the better option for most people.

If you have any questions you’re welcome to comment below, send us a tweet, or send us a message via this page.

Wednesday 10 January 2018

Online Doxxing


here is a culture of trying to discredit anyone you disagree with or just dislike and I’ve seen it manifest over and over through various groups. People will jump on a bandwagon like it’s giving out free candy and repeat bullshit lies they heard from a third party. The problem with the feminist community is that it’s fractured, people who disagree, people who are More Radical Than You so they can make fun of you, people who are Liberal Angels who want to separate themselves from Radical Devils, fuck tonnes of white feminism applied and in the end the women who need support can’t even get it from the people who claim to support them.

Monday 8 January 2018

Allied Races


I'm still guessing that the allied races, minus the Zandalari and Dark Iron Dwarves, are going to be pre order bonuses similar to the Demon Hunters with Legion. Most people have capped characters and have no real reason to go and try out the new level scaling zones but if the allied races are a preorder bonus people would be leveling these new races, potentially, for the heritage armor sets but I could be wrong. Prepare yourselves, members of the Alliance, for the hundreds upon hundreds of Void Elves that shall be invading your cities and for you of the Horde, you get a ridiculous amount of Nightborne because elves!

Sunday 7 January 2018

How I Made My Blogger Menu Bar Sticky


Change Any normal Navigation bar to a Sticky Navigation Bar with this guide. What is the benefits of this? Your website or blog visitors doesn't have to scroll back to the top to select different topic or category.

After following the steps of this post, your current Blogger navigation bar or menu bar become sticky which will be hidden while scrolling down and appear on scroll up.

Step 1Sign-in to your Blogger Account then Go to Layout → Add a Gadget → HTML / Javascript and paste the following code (It is recommended to ad this Gadget at the bottom area of your layout) :- 

<script>
//<![CDATA[
bs_makeSticky("header-navigation");
function bs_makeSticky(elem) {
var bs_sticky = document.getElementById(elem);
var scrollee = document.createElement("div");
bs_sticky.parentNode.insertBefore(scrollee, bs_sticky);
var width = bs_sticky.offsetWidth;
var iniClass = bs_sticky.className + ' bs_sticky';
window.addEventListener('scroll', bs_sticking, false);
function bs_sticking() {
var rect = scrollee.getBoundingClientRect();
if (rect.top < 0) {
bs_sticky.className = iniClass + ' bs_sticking';
bs_sticky.style.width = width + "px";
} else {
bs_sticky.className = iniClass;
}}}
//]]>
</script>
<style>.bs_sticking {background:#ffffff !important; position:fixed !important; display: inline;
float: none; position: fixed; top: 0px; left: 0px;
right: 0px; z-index: 999; width:100%;} </style> 


Step 2The above code will make your navigation menu bar sticky. Now below the above code Paste the following code for Scrolling effect. 

<script>
//<![CDATA[
$(function(){
var lastScrollTop = 0, delta = 5;
$(window).scroll(function(event){
var st = $(this).scrollTop();
if(Math.abs(lastScrollTop - st) <= delta)
return;
if (st > lastScrollTop){
// downscroll code
$("#header-navigation").css({top:'-50px'})
.hover(function(){$("#header").css({top: '0px'})})
} else {
// upscroll code
$("#header-navigation").css({top:'0px'});
}
lastScrollTop = st;
});});
//]]>
</script>

Step 3Now click on Save button and then Save Arrangement of your Layout.

That's It and don't forget to REPLACE header-navigation the with your Menu ID.
© Taqillya. Design by Taqillya.