Tech and Coding

Posts related to tech and coding

Enabling FULL-SCREEN function in Articulate Storyline

The Challenge: I often face situations where the course(s) are embedded into a page and get frequent requests to enable a full-screen option for the embedded content. Articulate Storyline does not have a built-in full-screen option when the course plays in an iframe, or at an optimal size.  The Solution: Although it is better to let the IT …

Enabling FULL-SCREEN function in Articulate Storyline Read More »

Remove ‘Comments’ section from a WordPress page

  Goto page.php. It will appear something like this: ——————————————————————————————get_header(); ?> <div id=”primary” class=”site-content”><div id=”content” role=”main”> <?php while ( have_posts() ) : the_post(); ?><?php get_template_part( ‘content’, ‘page’ ); ?><?php comments_template( ”, true ); ?><?php endwhile; // end of the loop. ?> </div><!– #content –></div><!– #primary –> <?php get_sidebar(); ?><?php get_footer(); ?> —————————————————————————————- Remove the line …

Remove ‘Comments’ section from a WordPress page Read More »

Insert a picture in a table

To put a repeating pic in table:   <table style=”background-image:url(https://kawstov.com/downloads/noisy_grid);”> <tr> <th>Table header</th><th>Table header</th> </tr> <tr> <td>Table cell 1</td><td>Table cell 2</td> </tr> </table>   Source:  http://www.quackit.com/html/codes/tables/html_table_background.cfm  

Top