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;
    }
}


How to remove Powered by wordpress and insert your own Copyright message

Go to namecheap and goto cpanel. Open file manager and goto:

androidresearch.net/wp-content/themes/twentyseventeen

In there, edit footer.php as follows:



Step 1:  Comment out the php line in line 42
Step 2: Insert your copyright notice in line 44.

For crackinglessons.com did this:


How to make posts full width in wordpress twenty seventeen

Paste this css in the customized css section of twenty seventeen:

.single-post:not(.has-sidebar) #primary, .page.page-one-column:not(.twentyseventeen-front-page) #primary, .archive.page-one-column:not(.has-sidebar) .page-header, .archive.page-one-column:not(.has-sidebar) #primary {
   max-width: 1000px;
}

.page-one-column .panel-content .wrap {
   max-width: 1000px;
}

@media screen and (min-width: 48em) {
    .blog:not(.has-sidebar) #primary article,
    .archive:not(.page-one-column):not(.has-sidebar) #primary article,
    .search:not(.has-sidebar) #primary article,
    .navigation.pagination,
    body.blog .site-content .page-header,
    body.archive .site-content .page-header,
    body.search .site-content .page-header {
        float: none;
        margin-left: auto;
        margin-right: auto;
        max-width: 1000px;
        width: auto;
    }
}


References:

[ Sheriziya's solution works: ]