Divi – Remove the divider line between content and sidebar
| |

Divi – Remove the divider line between content and sidebar

By default the Divi Theme displays a dividing line between the main content and the sidebar. It’s possible to remove this dividing line using CSS.Note that there are two cases in which a dividing line may occur (either on a standard sidebar, or on a sidebar module). Remove divider line between content and sidebar from…

How to take full-page screenshots using Firefox build-in Web Development Tool

How to take full-page screenshots using Firefox build-in Web Development Tool

You can take a full page screen shot of any live website using Firefox build-in Web Development Tool. No need to install add-on or third party apps. If past and works well. Go to Tools > Web Developer > Developer Toolbar, then type screenshot –fullpage That’s it.

How to Style Your Divi Blog Page into Two-Column Grid Layout
|

How to Style Your Divi Blog Page into Two-Column Grid Layout

Add a Standard Section and insert a fullwidth column. Click to edit the Section Settings and, under General Settings, change the following: Under Custom CSS add the following: CSS Class: tr_two_col Save & Exit Implementing the Two-Column Grid Layout By default, the blog grid has a three-columnn grid layout. To change this to a two-column…

How to make an offline mirror or duplicate copy of a website using wget

How to make an offline mirror or duplicate copy of a website using wget

Sometimes you want to create an offline copy of a site that you can take and view even without internet access. Using wget you can make such copy easily: wget –mirror –convert-links –adjust-extension –page-requisites –wait=2 -o log –no-parent http://example.org Explanation: –mirror // Makes (among other things) the download recursive. –convert-links // convert all the links…