Wednesday, January 22, 2020

Submitted Learn Ethical Hacking By Hacking Real Websites 2 to Udemy for approval

Submitted on Mon, 2020 Jan 20. On Tues, Jan 21. Got response asking to rename last lecture to Bonus Lecture. Complied and resubmitted on Jan 21 itself. It's now Jan 23 at 9.30 am and still not appoved.


Saturday, May 4, 2019

Updating Book: How to make money from c2 games - ver2

Rewrote chapter 11 to remove references to construct 3 and why I don't use c3 and republished to kindle at:

11.30 am May 5, 2019


At 2.40 pm the status has changed to LIVE UPDATES PUBLISHING
At 3.55 pm I received email informing me the book is available. Upon checking it says LIVE.

Wednesday, May 1, 2019

Wordpress grid card style

How to customize wordpress to show posts as grid card style like this:


Note that I am using the theme called VW Mobile App
Install the plugin called The Post Grid by Radius Theme.

Then customize the background color of the button to blue and the button text color to white.
Then customize the css for h1 tag for the VW Mobile App:

h1 { 
  display: block;
  font-size: 2em !important; 
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: normal !important;
}

h2 {
  display: block;
  font-size: 1.5em !important;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 0;
  margin-right: 0;
  font-weight: normal !important;
}



Submitted new book Make money with Construct 2 Games to Amazon Kindle

Submitted at 4 pm on May 1, 2019 (Wed). Status: IN REVIEW
By 6 pm status changed to: PUBLISHING
By 9: 20 pm status changed to: LIVE

Sunday, April 28, 2019

How to make twenty seventeen menu icon and text black color when layout is resized

By default, when you resize the screen using chrome responsive emulator, the menu bar cannot be seen because it is white, and the background is also white.

Solution is to change it to black by pasting this css code into the Additional CSS section of customization for twenty seventeen:

.menu-toggle {
    color: #000;
}

@media screen and (max-width: 768px) {
    .navigation-top .menu > .menu-item > a {
        color: #000;
    }
}