Monthly Archives: January 2016

Solved, WooCommerce CSS Not Working

This issue occurs if you create a kustom page or if you create your own theme. I found the people experiencing the same issue here and here. CSS WooCommerce but the problem can be solved easily. Add Class woocommerce Solved, WooCommerce CSS not working by adding class ‘woocommerce’ inside <body> tag. I get it from… Read More »

PHP : Membuat Hari dan Tanggal Indonesia

Panduan kali ini membahas PHP (Hypertext Preprocessor), dengan contoh membangun Hari dan Tanggal dengan menggunakan Bahasa Indonesia yang simple dan gampang. Ikuti langkah berikut. Bikin Function Membangun Function PHP bagi mereplace hari dan bulan menggunakan Bahasa Indonesia, selaku contoh : Sunday akan digantikan Minggu dan January akan digantikan menjadi Januari sesuai guna PHP str_replace dan… Read More »

Disable Box Shadow Bootstrap

Add this line in your CSS file to disable box shadow or inset shadow Boostrap forms textarea:focus,input[type=text]:focus,input[type=password]:focus,input[type=datetime]:focus,input[type=datetime-local]:focus,input[type=date]:focus,input[type=month]:focus,input[type=time]:focus,input[type=week]:focus,input[type=number]:focus,input[type=email]:focus,input[type=url]:focus,input[type=search]:focus,input[type=tel]:focus,input[type=color]:focus,.uneditable-input:focus {  outline: none;  border: 1px solid #545454;  -webkit-box-shadow: none !important;  -moz-box-shadow: none !important;  box-shadow: none !important;}.form-control {  display: block;  width: 100%;  height: 34px;  padding: 6px 12px;  font-size: 14px;  line-height: 1.42857143;  color: #555;  background-color: #fff;  border: 1px solid #c0c0c0; … Read More »

Hover Dropdown Menu Bootstrap

after browing through google I finally found a way to make hover dropdown fitur bootstrap. I never thought I would be this easy . The following hover feature to activate the dropdown fitur in the bootstrap Add a line on css .dropdown:hover .dropdown-menu { display: block; } very easy right? Thanks Bootstrap Joostrap Sumber https://idnetter.com