Showing posts with label text. Show all posts
Showing posts with label text. Show all posts

11/08/2015

Remove White Text Background in a Blogger Post

Re-blogged from Tech News

I have had the problem of text on a white background with a number of my blog posts particularly when cutting an pasting text from Word or other locations, which is a pain, as my background is black. Here is a solution...
Remove White text Background in Blogger Post

Sometimes when you compose a post and copy some material from other web sites or even from Office Word the white background is copied along with the text as background. Due to this the background of post appears white. So how to get rid of this annoying white background in blogger posts. But before i tell you the solution  to avoid such problems in future you can compose your text in Notebook and then copy it rather than using Office.Ok now to remove white background of already posted text follow these steps.

1.Go to edit your post
2.There you will find two options on upper left corner Compose and HTML
3.Click HTML
4. Now press control F and search for <span style="background-color: white;">
5.Delete style="background-color: white;"
6. So it turns to be <span>only and save

7. Also find style="background-color: white;
8. Delete the yellow highlighted portion that is background-color: white;
9. Now Save
10. Although it is a little bit time consuming as you will find a number of above mentioned two statements depending upon the length of your POST. However it is effective
Important
what if you have a lot of background-color: white;  statements in HTML
What you can do as a shortcut is to cut all the HTML code paste it in the word e.g MS word 2007.Now click the replace button on the right hand corner



A find and replace window will pop out
In Find what copy and paste background-color: white; 
and leave the Replace with blank and click replace all.This action will remove all the background-color: white;  statements from your HTML code.Now copy all the HTML code from MS word and paste it back in your blogger post in HTML.Now check your post in compose. Click update check your post now.all the white background must have disappeared.

11/03/2013

How to Copy a List of Files from a Windows Folder Into an Excel List

Maintaining an Excel spreadsheet of computer files can help you keep track of important business documents or images. Unfortunately, Microsoft Excel doesn't include a one-step method for importing a file list from Windows Explorer, but Windows 7 offers an easy workaround. Using the Command Prompt, you can tell Windows to output a text document containing a directory list. This text document can then be imported into Excel and modified just like any other spreadsheet.
Link back to original post...

Step 1

Press "Win-E" to open Windows Explorer and locate the folder for which you need a file list.

Step 2

Hold the "Shift" key, right-click the folder and select "Open Command Window Here." This only works with folders, not libraries. Libraries point to a specific folder, so select the folder located under the library icon. If the library points to a drive, right-click the drive letter from the folder tree.

Step 3

Type "dir /b > dirlist.txt" without quotes and press "Enter." This creates a list containing file names only. To include file sizes and dates, type "dir > dirlist.txt" instead. To also include files in sub-directories, type "dir /b /s > dirlist.txt" to create a list of files with the full directory structure name, such as "C:\folder\subdirectory\file.txt."

Step 4

Open Microsoft Excel and press "Ctrl-O" to bring up the Open dialog window.

Step 5

Navigate into the folder containing the files [note: this is the folder you right clicked on]. Click the file type drop-down menu and select "Text Files (*.prn,*.txt,*.cvs)." Double-click "dirlist.txt" to open it.

Step 6

Click "Finish" in the Text Import Wizard window to use the default options and import the directory list into Excel.

The dirlist.txt file created by his method could also be opened into Word or any text editor.