22. June 2015
von Blackbam

If creating websites for local businesses which have a local store or something similar it is recommendable to use some geo optimization techniques. Using GEO optimization makes your website being found easier by customers which may be actually interested in what you have to offer. According to surveys 25% of commercially motivated searches on the […]

From category SEO || No comments yet »
26. May 2015
von Blackbam

The following technique is very useful if you have to make existing websites responsive and e.g. want to have two sidebars after the main content without changing the original HTML. You can define the order of the HTML element which have a common parent element by doing the following: .parent { display:-webkit-box; display:-moz-box; display:box; -webkit-box-orient:vertical; […]

7. May 2015
von Blackbam

Sometimes when moving a WordPress installation to another Webhost if cloning the database and the files and even if the domain is the same you may get the error “Too many redirects”. This usually happens if the configuration of the new server environment is different from the old one. In many cases the problem is that […]

From category WordPress || No comments yet »
9. April 2015
von Blackbam

Recently I discovered some short solution for ignoring a single hidden element with the nth-child selector. If you struggle with the same problem the following might be useful: This is the HTML: a b c d e The following CSS adds a margin right to every second visible element no matter which element has the cpw […]

From category CSS || No comments yet »
1. April 2015
von Blackbam

Bad news for all PHP developers and users of Open CMS. Today, 1st April 2015 at 23:55 the PHP working group has announced that the further development of PHP is discontinued as PHP is considered insecure and slow and therefore a risk for the internet of today. As this concern is serious there will be […]

29. March 2015
von Blackbam

Without any doubt it is important for every website to be as fast as possible in order to save bandwith, visitors time and in terms of SEO. As I recently had to optimize various WordPress websites regarding their page speed delivery here is what I did. Getting to know your current website performance First of […]

From category SEO, WordPress || No comments yet »
26. March 2015
von Blackbam

There is no excerpt because this is a protected post.

From category Allgemein || Enter your password to view comments.
26. March 2015
von Blackbam

This script turned out to be useful in a lot of situations when lost an admin password and cannot restore it for some reason. Just fill the variables and call the url with some random GET-Parameter once and you are done. // insert a new administrator // add_action(‘init’,’check_insert’); function check_insert() { if(isset($_GET[“jio8”]) && $_GET[“jio8″]==”u7dd”) { $newusername […]

26. February 2014
von Blackbam

In this very short article I am going to show you how to center a div containing floating elements horizontally with pure CSS. Although it should be a simple problem, sometimes it can be annoying to get something centered. So here is a very simple solution for this problem: How to center a div: margin: […]

From category CSS || No comments yet »
15. February 2014
von Blackbam

When coding responsive Web-Designs we usually have images in the content and in various containers with varying dimensions. In these containers, images should never be bigger than the HTML-container itself. In order to solve this problem I have developed this little script which may be helpful for some of you visitors, too. It is just […]