Split Page Links

Something like this should get you started. CSS: .home div { display: inline-block; width: 50%; } .home a { display: table-cell; text-align:center; vertical-align: middle; } HTML: <div class=”home”> <div><a href=”https://wordpress.stackexchange.com/questions/211091/site.com”><img src=”path-to-logo-1″></a></div> <div><a href=”site-two.com”><img src=”path-to-logo-2″></a></div> </div> If it’s literally a single page site that only links off to two other sites, setting up WordPress for it … Read more

My homepage is gone but header is still there

jjj reported that the issue has been solved in the comments to the original question: …In the mean time I did some trouble shooting with the plugins page and it turns out the ‘sitemap’ plugin may be the culprit. It works fine after I deactivated that plugin. I will definitely debug however. Thank you again

Header and Footer options in pages and posts

You can do this by Using template page as well as custom fields. Let us say your custom fields value are 1 and 2 for header your conditions will be. if($header==1) { get_header(1); } else {get_header();} And similarly for footer it will be if($footer==1) { get_footer(1); } else { get_footer(); }

Custom CSS working on home page but not on NEW created PAGE

Copied from comments, so the question will indicate an answer has been provided: Found your key symptom. Inspecting your Impressum page with Chrome indicates loads of 404 errors. For example: http://darius-mann.com/smardigo/impressum/costum/hexagon/hexagon.js not found. If I remove the “impressum/” the file opens correctly. However your theme is building your reference URLs, it is including the current … Read more