If you flash a Debian-style Linux live-boot image that’s intended for USB stick on a USB-SSD itself (for speed), it will get stuck at initramfs on boot because unlike USB sticks, USB SSD drives are not considered removable drives, yet the live-boot parameters (scripts) set to search only removable media, hence it cannot find the right device.
The solution is to remove live-media=removable as boot parameter (typically under append initrd). You can do that quickly on each boot by TAB key to modify this key-value pair out of the boot parameters and hit enter.
To make it persistent, you have to edit the scripts where these boot parameter lives. The live USB stick/CD was supposed to be mounted as a read-only volume, so we need to first remount it as writable in order to modify the scripts:
mount -o remount -w /lib/live/mount/medium
Note the -w parameter which means writable. -o means options. -o remount,rw means exercising the remount option as a writable drive (-w is alternate syntax for writable).
Make sure you have root access (to modify these files), and edit these live*.cfg files if it shows up in the following folders:
I recently had problem with Enlighter plugin (for displaying code) being misaligned after upgrading my WordPress. The Enlighter text went outside the boxes in desktop browser mode and I contacted the author of the plugin for help in the forum, and learned it was actually Nested Order List (NOL) plugin that’s overriding the CSS rules that defines the margins.
Another user had similar problem NOL conflicting certain templates and the author of NOL suggested similar causes that the CSS style from the plugin messed with other styles:
The author suggested that the NOL plugin itself is not complicated to start with (it’s just adding a CSS), and the same functionality can achieved by adding this CSS to my WordPress theme template (pasting the following text under “Additional CSS”):
.entry-content ol,
.hentry ol {
counter-reset:level1;
}
.entry-content ol ol,
.hentry ol ol {
counter-reset:level2
}
.entry-content ol ol ol,
.hentry ol ol ol {
counter-reset:level3
}
.entry-content ol>li,
.hentry ol>li {
list-style-type:none;
line-height:1.4;
text-indent:-1.5em
}
.entry-content ol>li:before,
.hentry ol>li:before {
content:counter(level1,decimal)'. ';
counter-increment:level1;
display:inline-block;
text-align:right;
text-transform:none;
width:1em
}
.entry-content ol ol>li:before,
.hentry ol ol>li:before {
content:counter(level2,lower-alpha)'. ';
counter-increment:level2
}
.entry-content ol ol ol>li:before,
.hentry ol ol ol>li:before {
content:counter(level3,lower-roman)'. ';
counter-increment:level3
}