Google Software/Tips – Online Tech Tips https://www.online-tech-tips.com Computer Tips from a Computer Guy Wed, 03 Jan 2024 01:55:30 +0000 en-US hourly 1 https://wordpress.org/?v=6.3.2 15+ Simple Google Sheets Text Functions https://www.online-tech-tips.com/google-softwaretips/15-simple-google-sheets-text-functions/ https://www.online-tech-tips.com/google-softwaretips/15-simple-google-sheets-text-functions/#disqus_thread Sandy Writtenhouse]]> Wed, 03 Jan 2024 11:00:00 +0000 https://www.online-tech-tips.com/?p=99748

Whether you import data into Google Sheets or manually enter it, you can have situations where you need to change or correct text. Using the Google Sheets text functions on […]]]>
Whether you import data into Google Sheets or manually enter it, you can have situations where you need to change or correct text. Using the Google Sheets text functions on our list, you can save time by making several changes quickly and at once.

Convert a Number to Text: TEXT

Starting with a simple way to convert a number to text using a specified format is the TEXT function. You can use it for a date, time, percentage, currency, or similar number.

The syntax for the formula is TEXT(number, format), where you can use the exact number or a cell reference for the first argument. Depending on the format you want to use, you can visit the Google Docs Editors Help page for the list of over a dozen options for the second argument.

As an example, we’ll format the time 22:30 in a 12-hour format with AM or PM and as text using this formula:

=TEXT(“22:30”,”hh:mm AM/PM”)

15+ Simple Google Sheets Text Functions image 17

For another example, we’ll format the number in cell A1 as text with a percent sign using this formula:

=TEXT(A1,”0%”)

15+ Simple Google Sheets Text Functions image 18

Combine Text: CONCATENATE

If you want to join two strings of text, you can use the CONCATENATE function. You may have a first name and last name, city and state, or similar that you want to combine into a single cell.

The syntax is CONCATENATE(string1, string2,…), where you can use the text or cell references for the arguments.

In this example, we’ll combine the text in cells A1 through D1 into a single string with this formula:

=CONCATENATE(A1:D1)

15+ Simple Google Sheets Text Functions image 19

If you want to place a space between the words, you can insert a blank space within quotation marks between each cell reference using this formula:

=CONCATENATE(A1,” “,B1,” “,C1,” “,D1)

15+ Simple Google Sheets Text Functions image 1

For another example, we’ll combine the text “First name: ” with the text in cell A1 with this formula:

=CONCATENATE(“First name: “,A1)

15+ Simple Google Sheets Text Functions image 20

Combine Text With a Delimiter: TEXTJOIN

The TEXTJOIN function is similar to CONCATENATE for combining text. The difference is that you can use a delimiter (separator) and combine arrays with TEXTJOIN.

The syntax is TEXTJOIN(delimiter, empty, text1, text2,…). For the delimiter argument, place the space, comma, or other delimiter in quotes and for the empty argument, use True to exclude empty cells or False to include them.

As an example, we’ll join the text in the cell range A1 through C2 with a space as the delimiter and TRUE to ignore the empty cell (A2). Here’s the formula:

=TEXTJOIN(” “,TRUE,A1:C2)

15+ Simple Google Sheets Text Functions image 2

For another example, we’ll combine the text in cells A1 through A10 with a comma as the delimiter and FALSE to include the empty cells (A4 through A8) so you can see how the result looks. Here’s the formula:

=TEXTJOIN(“,”,FALSE,A1:A10)

15+ Simple Google Sheets Text Functions image 3

Tip: If you want to combine numbers, you can use the JOIN function.

Separate Text: SPLIT

Maybe you want to do the opposite of the above and separate text rather than combine it. For this, you can use the SPLIT function.

The syntax is SPLIT(text, delimiter, split_by, empty). Use the split_by argument with True (default) to separate the text around each character in the delimiter, otherwise use False. Use the empty argument with True (default) to treat consecutive delimiters as one, otherwise use False.

Here, we’ll split the text in cell A1 using a space as the delimiter and the defaults for the other arguments with this formula:

=SPLIT(A1,” “)

15+ Simple Google Sheets Text Functions image 4

For another example, we’ll split the text in cell A1 using “t” as the delimiter. This removes the “t” like it removes the space delimiter above and leaves the rest of the text. Here’s the formula:

=SPLIT(A1,”t”)

15+ Simple Google Sheets Text Functions image 21

Now, if we add FALSE as the split_by argument, this formula separates the text only at the “t[space]” mark:

=SPLIT(A1,”t “,FALSE)

15+ Simple Google Sheets Text Functions image 22

Compare Text: EXACT

Are you working on comparing data in your sheet? Using the EXACT function, you can compare two strings of text and receive a simple True or False result for whether they match or not.

The syntax is EXACT(text1, text2), where you can use text or cell references for the arguments.

As an example, we’ll compare the two text strings in cells A1 and B1 with this formula:

=EXACT(A1,B1)

15+ Simple Google Sheets Text Functions image 5

For another example, we’ll compare the text in cell A1 with “Google” using this formula:

=EXACT(A1,”Google”)

15+ Simple Google Sheets Text Functions image 6

Change Text: REPLACE and SUBSTITUTE

While you can use the Find and Replace feature in Google Sheets, you may need to be more specific than the feature allows. For instance, you might want to change a letter in a particular spot or only a certain instance of text in a string. In this case, you can use either REPLACE or SUBSTITUTE.

Although similar, each function works slightly differently, so you can use whichever meets your needs best.

The syntax for each is REPLACE(text, position, length, new) and SUBSTITUTE(text, search_for, replace_with, occurrence). Let’s walk through a couple of examples and how to use the arguments.

REPLACE

Here, we want to replace “William H Brown” with “Bill Brown,” so we’ll use the REPLACE function and this formula:

=REPLACE(A1,1,9,”Bill”)

To break down the formula, A1 is the cell with the text, 1 is the starting position to replace, 9 is the number of characters to replace, and Bill is the replacement text.

15+ Simple Google Sheets Text Functions image 7

As another example, we have phone numbers stored as text and need to change the prefix for each. Since each prefix is different, we can use REPLACE to specify the position and number of characters for the replacement. Here’s the formula:

=REPLACE(A1,5,3,”222″)

15+ Simple Google Sheets Text Functions image 8

Tip: To change multiple cells in a column, you can drag the formula down to apply it to the subsequent rows as shown below.

15+ Simple Google Sheets Text Functions image 9

SUBSTITUTE

For an example of the SUBSTITUTE function, we want to replace “new york” with “New York” and will add the occurrence argument to make sure we only change the first instance in our string. Here’s the formula:

=SUBSTITUTE(A1,”new york”,”New York”,1)

To break down this formula, A1 contains the text, “new york” is the text we search for, “New York” is the replacement, and 1 is the first occurrence of the text.

15+ Simple Google Sheets Text Functions image 10

If you were to remove the occurrence argument in the above formula, the function would change both instances to “New York” by default as you can see here:

=SUBSTITUTE(A1,”new york”,”New York”)

15+ Simple Google Sheets Text Functions image 23

Change the Letter Case: PROPER, UPPER, and LOWER

If you import data from another source or mistype during data entry, you may end up with mismatched letter cases. Using the PROPER, UPPER, and LOWER functions, you can quickly correct it.

The syntax for each is simple as PROPER(text), UPPER(text), and LOWER(text) where you can use a cell reference or the text for the argument.

To capitalize the first letter of each word in a text string, you can use the PROPER function and this formula:

=PROPER(A1)

15+ Simple Google Sheets Text Functions image 24

To change the letters to all uppercase, use the UPPER function and this formula:

=UPPER(A1)

15+ Simple Google Sheets Text Functions image 25

To change the letters to all lower case, use the LOWER function and this formula:

=LOWER(A1)

15+ Simple Google Sheets Text Functions image 11

Remember, you can also enter the exact text for all three functions within quotes as follows:

=PROPER(“online tech TIPS”)

15+ Simple Google Sheets Text Functions image 12

Obtain Part of a Text String: LEFT, RIGHT, and MID

Maybe you need to extract part of a text string. You may have data mixed in with other data or want to use a portion of a string for something in particular. You can use the LEFT, RIGHT, and MID functions to get the part you need.

The syntax for each is LEFT(string, num_characters), RIGHT(string, num_characters), and MID(string, start, length). You can use a cell reference or the text as the string argument in each.

For an example of the LEFT function, we’ll extract the first three characters from the left using the text in cell A1 with this formula:

=LEFT(A1,3)

15+ Simple Google Sheets Text Functions image 26

For an example of the RIGHT function, we’ll extract the first four characters from the right using the same cell with this formula:

=RIGHT(A1,4)

15+ Simple Google Sheets Text Functions image 13

For an example of the MID function, we’ll extract the name “Jane” from the text in the same cell.

=MID(A1,6,4)

15+ Simple Google Sheets Text Functions image 14

In this MID example, a 6 for the start argument selects the 6th character from the left. Remember that all characters count, including spaces and punctuation. Then, a 4 for the length argument selects four characters.

Get the Length of a Text String: LEN and LENB

When you plan to do something specific with your data, such as copy and paste or export it for use elsewhere, you might need to be cautious about the character count. With LEN, you can get the number of characters in a text string, and with LENB, you can get the count in bytes.

The syntax for each is LEN(string) and LENB(string), where again, you can use a cell reference or text as the argument.

Here, we’ll get the character count for the text in cell A1 with this formula:

=LEN(A1)

15+ Simple Google Sheets Text Functions image 27

With this formula, we’ll get the character count for the text in cell A1 but as bytes instead:

=LENB(A1)

15+ Simple Google Sheets Text Functions image 28

Remove Extra Spaces: TRIM

If you need to clean up your data from leading, trailing, or miscellaneous extra spaces, you can use the TRIM function.

The syntax is TRIM(text), where you can use a cell reference or text for the argument.

Here, we’ll remove the spaces from the text string in cell A1 with this formula:

=TRIM(A1)

15+ Simple Google Sheets Text Functions image 15

Next, we’ll remove extra spaces from the specific text “ Online Tech Tips” with this formula:

=TRIM( “Online Tech Tips”)

15+ Simple Google Sheets Text Functions image 16

Tackle Your Text With Google Sheets Functions

Google Sheets offers many features for working with text. You can wrap text, change the format, hyperlink it, and more. However, when you have a lengthy dataset, the Google Sheets text functions can help you tackle your text changes quicker and more efficiently. Will you give one or two a try?

For related tutorials, look at how to use Google Sheets formulas for arrays.

]]>
https://www.online-tech-tips.com/google-softwaretips/15-simple-google-sheets-text-functions/feed/ 0
Twitter Not Working in Google Chrome? Try These 13 Fixes https://www.online-tech-tips.com/google-softwaretips/twitter-not-working-in-google-chrome-try-these-13-fixes/ https://www.online-tech-tips.com/google-softwaretips/twitter-not-working-in-google-chrome-try-these-13-fixes/#disqus_thread Paula Beaton]]> Thu, 28 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99680

Twitter, or X, is still one of the most popular social media platforms around. If you’re trying to access Twitter and experiencing issues, there could be various reasons for this, […]]]>
Twitter, or X, is still one of the most popular social media platforms around. If you’re trying to access Twitter and experiencing issues, there could be various reasons for this, from your VPN service interfering with connectivity to system bugs, using an outdated version of Chrome, or a Twitter outage. If Twitter won’t work in Chrome, what can you do to fix the problem? We’ve got 13 fixes to try.

Restart Your PC

When Twitter won’t work in Chrome, a quick restart of your PC may solve the problem. Try restarting your PC to see if the issue is fixed.

Restart Google Chrome

If Twitter isn’t working, you could try restarting Chrome.

  1. Click the X in the top right of the Google Chrome window to close it.
  2. Wait a few minutes, then open Google Chrome again and see if the issue persists.

Try Browsing In Incognito Mode

If none of the above fixes have worked for you, why not try browsing in incognito mode? Google Chrome’s incognito mode — known as private browsing on some other browsers — could help resolve the issue with Twitter if it’s caused by connectivity issues.

Update Google Chrome

You could always try updating Google Chrome to ensure you’re running the latest version. Here’s how to do that:

  1. Launch Google Chrome.
  2. Click the three vertical dots menu at the top right of your screen.
  3. Select Settings.
  4. From the left-hand menu, choose About Chrome.
  5. Chrome should now automatically check for and install any new updates.

Check if Twitter Is Down

If Twitter won’t work in Chrome, it could be caused by something as simple as a Twitter outage. You can check to see if Twitter is down by visiting DownDetector — though if there’s an outage, you’ll have to sit tight and wait for Twitter to fix the problem.

Restart Your Router

Sometimes a router restart can resolve any issues accessing Twitter or other sites if the problem is caused by poor internet connectivity. If your router has a power button, press it and wait for it to finish turning off. Once it’s powered off, unplug it from the mains, wait for a few minutes, then plug it back in and turn it on to see if the issue persists.

Disable Chrome Extensions

Chrome Extensions can come in pretty handy for a variety of tasks, but they can also cause conflicts which could interfere with Twitter loading properly, for example if they’re corrupt or have a bug. You can disable Chrome extensions to see if this resolves the issue connecting to Twitter.

  1. Launch Google Chrome and click the three vertical dots menu at the top right of your screen.
  2. Select Extensions > Manage Extensions.
  3. Find the extension you suspect is the culprit — for example, it may be a recently installed extension — and toggle it off.
  4. You can try this for each extension in turn until you locate the issue, or turn them all off to see if this solves the problem.

Clear Your Browser Cache

Clearing your browser cache can fix a variety of issues, so if something goes wrong while accessing Twitter, here’s how to clear your browser cache:

  1. Launch Google Chrome and click the three vertical dots menu at the top right.
  2. Select More Tools.
  3. Click Clear Browsing Data.
  1. Select the Time Range, or choose All Time to delete everything, then click Clear Data. Make sure that browsing history, download history, cookies & other site data, and cached images & files are all checked.

Reset Chrome Browser

It may seem like a fairly drastic option, but you could always reset Google Chrome. This resets all Google Chrome’s settings to factory mode, and here’s how to do it:

  1. Launch Google Chrome.
  2. Click on the three vertical dots menu and then click Settings.
  3. From the left-hand menu, select Reset Settings.
  1. Select Restore Settings to Their Original Defaults > Reset Settings.

Disable Your VPN

If you use a VPN to protect your IP address, you may be unable to access Twitter or location-specific Twitter content. Disabling your VPN could help. The steps to do this will vary depending on the VPN you’re using.

Disable Your Antivirus Program

We don’t necessarily recommend disabling your antivirus, but if Twitter won’t work in Chrome, you could give it a try. If your antivirus software is flagging Twitter as a threat, it may not load properly. Don’t forget to enable your antivirus again once you’ve finished on Twitter.

A better long-term solution is to add Twitter as an exception or mark it as safe so that your antivirus doesn’t prevent access. The steps to do this will depend on which antivirus software you’re using, but you’ll usually find this information in your antivirus software’s help pages.

Turn Off Proxy Servers

If you’re still experiencing issues with Twitter in Google Chrome, you could try turning off proxy servers in Chrome. Here’s how to do that:

  1. Open Google Chrome.
  2. Click the three vertical dots menu at the top right and select Settings.
  3. From the left-hand menu, choose System.
  4. Select Open Your Computer’s Proxy Settings.
  5. In the Settings window, ensure the toggle for Automatically Detect Settings is set to off.
  6. Under Manual Proxy Setup, ensure the toggle for Use a Proxy Server is off.

Contact Twitter Support

None of the above fixes solved your problem? It’s probably time to contact Twitter support. You might find this is a known issue that’s affecting others too. Even if it’s only affecting you, Twitter support should be able to help and advise what to try next if the above fixes didn’t work for you.

As you can see, there are several fixes to try when Twitter won’t work in Chrome, so there’s no need to panic. Hopefully, you’ll only need to try a few of these fixes before you find one that works for you. Before you go, here are some fixes to try if Twitter isn’t loading or showing pictures.

]]>
https://www.online-tech-tips.com/google-softwaretips/twitter-not-working-in-google-chrome-try-these-13-fixes/feed/ 0
How to Highlight Texts in Google Sheets (Manually and Automatically) https://www.online-tech-tips.com/google-softwaretips/how-to-highlight-texts-in-google-sheets-manually-and-automatically/ https://www.online-tech-tips.com/google-softwaretips/how-to-highlight-texts-in-google-sheets-manually-and-automatically/#disqus_thread Nicolae Bochis]]> Wed, 20 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99569

Highlighting a cell, text, or part of text in a cell is the best way to draw attention to your data in Google Sheets. You can highlight text to make […]]]>
Highlighting a cell, text, or part of text in a cell is the best way to draw attention to your data in Google Sheets. You can highlight text to make a reminder or to organize your data in a more readable manner. But Google Sheets lacks the highlight tool available in Google Docs. So we’ll show you several different ways to do it. You can opt for manual highlighting by changing the cell’s background or text color. Or you can use Conditional Formatting to automatically highlight text containing specific words or phrases.

1. Highlight Cells

Highlighting the entire cell is pretty straightforward. You can choose to highlight only one or a group of cells. Follow these steps:

  1. Select the cell or a group of cells you want to highlight.
  1. Select the Fill color icon from the toolbar, and choose the highlight color you want.
  1. The selected cells will automatically become highlighted with a different fill color than the others.

And that’s all there is to it. Highlighting cells might be the easiest thing to do in Google Sheets.

2. Highlight Text

If you don’t want to highlight the whole cell but only the data inside it, you can do it by changing the text color. It doesn’t matter if it’s a particular value, the whole text, or just a part of the text in a cell you want to highlight; the concept is the same.

  1. Select the text within the cell or part of the text you want to highlight. Double-click the cell with your cursor to access the text to do this.
  1. Select the Text color icon from the main toolbar, and choose the desired color.
  1. The selected text will automatically change to the color you chose from the color palette.

Note: You can use as many colors as you want to highlight your text. But remember that some colors might be difficult to read depending on the cell background color. You can combine cell and text highlight methods to achieve different effects. You can also change the formatting style of your text to Bold, Italic, or Strikethrough to put even more emphasis on the text or a cell.

3. Conditional Formatting

For data analysis, you can format the cells based on their content. For example, you can change the background color of cells with the same value. Conditional formatting will save you time if you need to highlight several different cells with the same value and you don’t want to manually search for them to select and highlight those values.

Let’s see how to automatically highlight cells that begin, end, or contain a specific value, word, or phrase, changing only the conditional formatting rules.

Note: Conditional formatting is less powerful in Google Sheets compared to Microsoft Excel. The former limits you to 50 rules per sheet, while you can create up to 256 rules in Excel to highlight your data.

1. Highlight Text That Begins With a Specific Word

  1. Select a cell (or multiple cells) that contains a specific word, phrase, or value.
  2. Open the Format menu from the ribbon at the top of the screen.
  1. Select Conditional Formatting from the drop-down menu. The Conditional Formatting menu will open on the right side of the Google Sheet.
  1. If you want to apply Conditional Formatting to multiple cells that contain the same word, you’ll have to input the range to which the formatting will be applied. Click on the Apply to Range box.
  1. When the dialog box opens, type in the range of cells where you want to apply the formatting. Look at the cell numbers and column letters and type in the range— e.g. A2:A16. This will highlight the cells that meet the conditional formatting rule .
  1. In the Conditional Formatting menu, under Format Rules (or Conditional format rules), click on the drop-down menu for Format cells if…
  1. Select Text starts with from the drop-down menu.
  1. In the Value or formula box, type in the specific word (or a custom formula) with which the cell begins.
  1. In the Formatting Style section, you can select the text and background color you want added to the text or the whole cell and text formatting options such as Bold, Italic, and Strikethrough.
  1. When you select all the desired options in Formatting Style, hit the Done button.

The cells containing a specific word will be highlighted automatically (in our example”, the word is “Best”).

2. Highlight Text That Ends With a Specific Word

You can also highlight all the cells that end with a specific word. The steps are almost the same. However, when you come to the point where you need to select Format rules, You’ll choose Text ends with from the drop-down menu.

All the steps before and after this are the same as described in the previous section. Once you are ready to apply the highlight to all the cells that end with a specific word, phrase, or value, hit the Done button.

3. Highlight Text That Contains a Specific Word

You probably guessed that to highlight text that contains a specific word you have to follow the same steps as previously described in the Conditional Formatting section. But when you reach the point to select Format rules, you’ll choose Text contains from the drop-down menu.

Select the formatting styles you desire and hit the Done button to finish.

Manually highlighting text gives you precise control over the selection process, allowing you to emphasize specific data points, labels, or insights. This hands-on method is ideal for smaller datasets.

On the other hand, automatic highlighting with conditional formatting offers efficiency and scalability. It allows you to set up rules that dynamically highlight cells based on specific criteria, making it perfect for larger datasets. After using conditional formatting, you can also filter your spreadsheet data by color.

Whether you choose the manual or automatic route, highlighting the correct text enhances the clarity and readability of your spreadsheets, so keep experimenting with both methods.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-highlight-texts-in-google-sheets-manually-and-automatically/feed/ 0
How to Fix a “Your clock is ahead” Error in Google Chrome https://www.online-tech-tips.com/google-softwaretips/how-to-fix-a-your-clock-is-ahead-error-in-google-chrome/ https://www.online-tech-tips.com/google-softwaretips/how-to-fix-a-your-clock-is-ahead-error-in-google-chrome/#disqus_thread Mahesh Makvana]]> Sun, 17 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99500

The “Your clock is ahead” error in Google Chrome prevents you from accessing your sites, as your browser can’t validate your sites’ SSL certificates. This mainly happens when your computer’s […]]]>
The “Your clock is ahead” error in Google Chrome prevents you from accessing your sites, as your browser can’t validate your sites’ SSL certificates. This mainly happens when your computer’s date and time settings are incorrect, as the browser can’t match the time and date of your site’s security certificates with your machine’s time. We’ll show you a few ways to resolve this issue and get Chrome to load your sites.

Some other reasons Chrome has issues loading your sites are that your VPN or proxy server isn’t working correctly, Chrome’s cached data is corrupted, Chrome’s configuration is faulty, and more.

Set the Correct Date and Time on Your Computer

When you encounter a “Your clock is ahead” Chrome error, check and ensure your computer is using the correct date and time settings. You or someone else may have modified these settings, making your machine use the incorrect date and time.

In this case, set your PC’s time and date on the automatic mode so you always have the correct settings on your computer.

On Windows 11

  1. Right-click the current time in your screen’s bottom-right corner and choose Adjust date and time.
  2. Turn on the Set time automatically option.
  1. Enable the Set time zone automatically option.
  2. Quit Settings, relaunch Chrome, and access your site.

On Windows 10

  1. Right-click the clock in your screen’s bottom-right corner and choose Adjust date/time.
  2. Activate the Set time automatically option.
  1. Enable the Set time zone automatically option.
  2. Close Settings, re-open Chrome, and load your site.

Turn Off the VPN or Proxy Server on Your Computer

If you’re using a VPN or proxy server on your computer, turn these items off and see if that resolves your issue. Sometimes, your web browsers can’t load sites because your VPN or proxy server isn’t working correctly.

You can turn off your VPN by launching your app and toggling off the main option.

If you’re using a proxy server on your PC, use the following steps to turn that server off:

On Windows 11

  1. Open Settings by pressing Windows + I.
  2. Select Network & internet in the left sidebar.
  3. Choose Proxy on the right pane.
  4. Turn off Automatically detect settings.
  1. Select Set up next to Use a proxy server and disable Use a proxy server.
  2. Close Settings, launch Chrome, and open your site.

On Windows 10

  1. Access Settings by pressing Windows + I.
  2. Choose Network & Internet in Settings.
  3. Select Proxy in the left sidebar.
  4. Turn off Automatically detect settings on the right.
  1. Disable the Use a proxy server option.
  2. Quit Settings, open Chrome, and launch your site.

Clear Chrome’s Saved Browsing Data

Chrome caches various files in the browser to improve your surfing sessions. Sometimes, this cached data becomes corrupted, causing your browser to be unable to load your sites. This may be the case with you.

In this case, clear Chrome’s saved browsing data to potentially fix your issue.

  1. Open Chrome, select the three dots in the top-right corner, and choose Settings.
  2. Select Privacy and security in the left sidebar.
  1. Choose Clear browsing data on the right pane.
  2. Select All time from the Time range drop-down menu, enable the Cached images and files option, untick all other options, and choose Clear data.
  1. Launch a new tab in your browser and try to access your site.
  2. If your site fails to load, clear all the data saved in Chrome to fix your issue.

Reset Your Chrome Browser Settings

If your “Your clock is ahead” error persists, Chrome’s browser settings might be faulty. You or someone else may have specified Chrome settings incorrectly, making the browser unable to load your sites.

In this case, reset Chrome to the factory settings to potentially fix your issue. Doing so deletes all your custom settings and lets you set up your browser from scratch. Note that you don’t lose your bookmarks, browsing history, and saved passwords when you reset Chrome.

  1. Run Chrome, select the three dots in the top-right corner, and choose Settings.
  2. Select Reset settings in the left sidebar.
  3. Choose Restore settings to their original defaults on the right pane.
  1. Select Reset settings in the prompt.
  2. Relaunch Chrome when you’ve reset the settings, then load your site.

Replace Your Computer’s CMOS Battery

If your computer doesn’t retain the correct date and time when you give your machine a reboot, your computer’s CMOS battery might be faulty or dead. This battery allows your machine to retain the correct date and time settings, even when you’ve turned off your PC.

In this case, you may have to replace your current CMOS battery with a new one. You’ll have to open your PC’s physical compartment, take the existing CMOS battery out, and place the new one in.

If you aren’t experienced in performing such tasks, we highly recommend you seek the help of a technician to perform the procedure. This is to ensure you don’t end up damaging other parts of your machine.

Make Chrome Ignore the SSL Certificate Warnings

If your issue remains unresolved, but you must access your site, you can get Chrome to ignore the SSL certificate warnings and load your site anyway. This resolves your issue for the time being and lets you access your site’s contents.

You’ll add a parameter to your Chrome desktop shortcut to make the browser ignore certain warnings. Note that this is a temporary workaround, and you should look into resolving your issue.

  1. Right-click Chrome’s shortcut on your desktop and choose Properties.
  2. Select the Shortcut tab in Properties.
  3. Put your cursor at the end of the existing text in the Target field, press Spacebar, and add the following parameter: –ignore-certificate-errors
  1. Select Apply followed by OK at the bottom to save your changes.
  2. Launch Chrome using your desktop shortcut and open your site.

Many Ways to Resolve a Clock Error in Your Google Chrome Browser

Chrome’s “Your clock is ahead” error can drive people crazy as the issue doesn’t let you access any sites in your browser. If this error message doesn’t go away despite multiple attempts to access your site, the above-mentioned methods will help you resolve your problem.

When you’ve fixed the issue, Chrome will load your sites just as it should, letting you access all your favorite content. Happy browsing!

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-fix-a-your-clock-is-ahead-error-in-google-chrome/feed/ 0
How to Add Line Numbers in Google Docs https://www.online-tech-tips.com/google-softwaretips/how-to-add-line-numbers-in-google-docs/ https://www.online-tech-tips.com/google-softwaretips/how-to-add-line-numbers-in-google-docs/#disqus_thread Sandy Writtenhouse]]> Wed, 13 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99460

You may be working on a contract, script, or reference material where using line numbers is essential. You can refer to a line number for discussion, navigation, or changes. We’ll […]]]>
You may be working on a contract, script, or reference material where using line numbers is essential. You can refer to a line number for discussion, navigation, or changes. We’ll show you how to add line numbers in Google Docs and the options you have.

About Line Numbers in Google Docs

There are a few things to remember when inserting line numbers in Google Docs.

  • You can see the line numbers in blue on the left side of each line, including subtitles, headers, blank lines (after pressing Enter or Return), and in a table of contents or bibliography.
  • You cannot change the style, color, or size of the line numbers as of this writing.
  • You can use continuous numbering throughout the document, start fresh on each page, or number document sections.
  • You can only use line numbers in the Pages format. If you use the Pageless format by default, you can switch by selecting File > Page setup > Pages.

How to Add Line Numbers in Google Docs

When you’re ready to insert line numbers, open your document in Google Docs on the web. The feature is not currently available on Android or iPhone’s Google Docs mobile app.

  1. Select Tools in the menu and choose Line numbers.
  1. When the sidebar opens on the right, check the box at the top for Show line numbers.
  1. You should then see the blue numbers to the left of each line.

Tip: You can add line numbers in a Microsoft Word document too.

Customize Line Numbers in Google Docs

You’ll notice different options for your line numbers in Google Docs.

You can choose one of the Line Numbering Modes for how to number your document, including the entire document, or restarting at 1 on each page or section.

In the Apply To section, you can choose between the entire document or the section where your cursor is located.

The second option is grayed out if you don’t have designated sections in your document, which we’ll explain next.

How to Add Line Numbers to Sections

If you have a document where you only want to number lines in certain sections rather than the entire document, you’ll start by adding those sections.

  1. Place your cursor where you want to create a new section.
  2. Select Insert in the menu and move to Break. Choose the type of section you want to insert, whether continuous on the same page or a new page.
  1. If you want to see the location of your section break, you can select View > Show non-printing characters in the menu.
  1. Return to the Line Numbers sidebar. You can reopen it by selecting Tools > Line numbers if you’ve closed it.
  2. Then, do one of the following depending on how you want to number the sections.

Restart in Each Section

Select Restart on each section below Line Numbering Mode to start each section at number 1.

Number the Current Section

Select This section below Apply To if you only want the line numbers in the section where your cursor is placed.

Then, place your cursor in each other section and uncheck the Show line numbers box in the sidebar.

You can follow these same steps to number other sections in your document the same way. Then, refer to the line you need by specifying the section and line number within it.

Tip: You can also add page numbers for references in your document.

Remove Line Numbers in Google Docs

If you want to remove the line numbers in your Google Docs document later, it’s as easy as unchecking a box.

Open the sidebar by selecting Tools > Line numbers. Uncheck the Show line numbers box at the top of the sidebar.

If you numbered particular sections, place your cursor in the section to display the marked checkbox and uncheck it.

For a simple way to reference specific lines, sentences, or paragraphs in your documents, you now know how to add line numbers in Google Docs. For related tutorials, look at how to remove section and page breaks too.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-add-line-numbers-in-google-docs/feed/ 0
Gmail Won’t Download Attachments in Android? 11 Fixes to Try https://www.online-tech-tips.com/google-softwaretips/gmail-wont-download-attachments-in-android-11-fixes-to-try/ https://www.online-tech-tips.com/google-softwaretips/gmail-wont-download-attachments-in-android-11-fixes-to-try/#disqus_thread Dilum Senevirathne]]> Sat, 09 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99401

We’ve all been there: an urgent document lands in your Gmail inbox, and just when you need it most, the attachment fails to download. Although Gmail is arguably Android’s most […]]]>
We’ve all been there: an urgent document lands in your Gmail inbox, and just when you need it most, the attachment fails to download. Although Gmail is arguably Android’s most reliable email client, occasional hiccups like this occur.

If you’re currently staring at a stubborn Gmail attachment that refuses to save to local storage or Google Drive, don’t worry. This troubleshooting tutorial will walk you through multiple solutions to the problem.

Note: The instructions below are from a Google Pixel running Android 13. Steps may differ slightly depending on your device’s model and system software version.

1. Quit and Relaunch Gmail

It’s best to kick things off by closing and re-opening Gmail. This action helps refresh the app and quickly fix unexpected issues preventing you from downloading attachments.

  1. Swipe up from the bottom of the screen to bring up the app switcher.
  2. Locate and drag the Gmail card up and out of the screen.
  3. Re-open Gmail via the Home Screen or App Drawer.

2. Restart Your Android Phone

Another relatively simple fix involves restarting your Android phone. It resolves random system-related problems, causing apps like Gmail to malfunction. Just hold the Power and Volume Up buttons simultaneously and tap Restart.

3. Check Your Internet Connection

Before diving into more advanced solutions, it’s a good idea to ensure there’s nothing wrong with the internet. You can test this by browsing a website or checking another app.

If there are connectivity issues, you may need to restart your router, switch between Wi-Fi and mobile data, or get closer to the Wi-Fi source. Learn more about fixing a slow Wi-Fi or mobile data connection on Android.

4. Clear Data in the Gmail Cache

When you attempt to preview a supported attachment type, like a PDF file, Gmail begins caching its contents locally. Rarely, however, this process can fail, and the partial download continually blocks access to the attachment. Clearing Gmail’s app cache is a feasible way to resolve the issue, including many others that stem from cache corruption. Here’s how:

  1. Open Android’s Settings app.
  2. Tap Apps and choose Gmail within the list of Android apps.
  1. Select the Force stop button.
  2. Tap OK on the confirmation prompt.
  1. Select Storage & cache.
  2. Tap the Clear cache button.
  1. Exit to the Home Screen and relaunch Gmail.

5. Check the Gmail Servers

Gmail attachment download issues could also crop up because of complications on Google’s end. To confirm, open Google Chrome or any other browser on your Android phone and visit the Google Workspace Status Dashboard. If any ongoing issues are listed next to Gmail, wait until Google resolves them.

6. Ask the Sender to Resend the Attachment

An incorrectly attached file is another reason that prevents Gmail from consistently failing to download it. If the issue is isolated to a single item, try asking the person who sent it to you to re-send it.

Password-protected files might also lead to download issues. If that’s the case, request a copy without a password.

7. Update the Gmail App to Its Latest Version

If the download problem persists with multiple attachments, it’s likely due to a fault with the Gmail app. Check the Google Play Store for updates since these often contain bug fixes and performance improvements. Here’s how:

  1. Open the Google Play Store.
  2. Search for Gmail.
  3. Tap Update if the option is available to update Gmail.

If Gmail is up-to-date, try reapplying any recent updates to ensure everything is correctly installed. Just tap the Uninstall button on Gmail’s store page—this does not uninstall the app—and Update afterward.

8. Allow Unrestricted Access to the Internet

The following fix involves ensuring Gmail has adequate permissions to use mobile data and Wi-Fi, even when Android’s data-saving features are active. If not, you might be restricted to reading emails only. To do that:

  1. Enter the Android Settings.
  2. Go to Apps > All apps.
  3. Tap Gmail.
  4. Tap Mobile data & Wi-Fi.
  5. Enable the switches next to Background data and Unrestricted data usage.

9. Disable Battery Saver

The Battery Saver mode on Android curtails app functionality to conserve power, so briefly disable it and check if that fixes Gmail’s attachment downloading issues. Here’s how:

  1. Open the Settings app and tap Battery.
  2. Tap Battery Saver.
  3. Disable the switch next to Use Battery Saver.

10. Resync Google Account With Gmail

Gmail may not work correctly if it’s not in sync with your Google Account, so the following fix involves refreshing the connection between the app and the account. To do that:

  1. Open the Settings app and tap Passwords & accounts. Alternatively, tap your profile portrait on the top right corner of the Gmail app and select Manage accounts on this device.
  2. Tap your Gmail account under the Accounts for [Your Name] section.
  1. Tap Account sync.
  2. Disable the switch next to Gmail.
  3. Wait 10 seconds and re-enable Gmail.

11. Reset Android’s Network Settings

Persistent Gmail attachment download issues can originate from a corrupt Android network configuration, so another way to fix the problem is to factory reset your Wi-Fi and mobile data settings. Here’s how:

  1. Open the Settings app.
  2. Scroll down and tap System.
  3. Tap Reset options.
  1. Tap Reset Wi-Fi, mobile & Bluetooth.
  2. Tap Reset settings.

After the network reset, your phone won’t auto-join previously remembered Wi-Fi networks—you must re-enter their passwords and connect to them from scratch. On the other hand, your cellular settings should update automatically—if they don’t, contact your wireless carrier for assistance.

Get Those Gmail Attachments Downloading Again

When you encounter issues downloading attachments in Gmail on your Android device, there’s a structured approach you can follow. Begin with basic solutions like restarting the app and checking your internet. If these don’t yield results, delve into app-specific fixes or consider external factors like server outages.

For persistent problems, tweaking specific device settings that conflict with Gmail or restoring Android’s network preferences to factory defaults can make a difference. With persistence, you should be able to download attachments normally again.

]]>
https://www.online-tech-tips.com/google-softwaretips/gmail-wont-download-attachments-in-android-11-fixes-to-try/feed/ 0
Why Does YouTube Default to 360p? (and How to Fix It) https://www.online-tech-tips.com/google-softwaretips/why-does-youtube-default-to-360p-and-how-to-fix-it/ https://www.online-tech-tips.com/google-softwaretips/why-does-youtube-default-to-360p-and-how-to-fix-it/#disqus_thread Mahesh Makvana]]> Mon, 04 Dec 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99327

Does YouTube default to 360p quality for your videos? At 360p, YouTube videos can appear blurry. Some reasons why YouTube chooses to play your videos in 360p are that your […]]]>

Does YouTube default to 360p quality for your videos? At 360p, YouTube videos can appear blurry. Some reasons why YouTube chooses to play your videos in 360p are that your internet connection is slow, you have yet to set the default video quality, your web browser settings are incorrect, and more.

Check if Your Internet Connection Is Slow

The most common reason YouTube plays your videos in 360p is that your internet connection is slow. Your connection speed isn’t fast enough to play videos in higher quality, which forces the platform to choose a lower quality for your video playbacks.

In this case, check if your internet connection is fast enough using a site like Fast or Speedtest. These sites will check your connection’s speed and let you know the current speed.

If your connection is slow, contact your internet service provider (ISP) to upgrade to a higher-speed plan.

Manually Change Your YouTube Video’s Playback Quality

If YouTube doesn’t automatically enhance your video quality, manually choose the high-quality option for your video playbacks. You can do this on YouTube’s desktop site as well as YouTube’s app for iPhone, iPad, and Android.

Changing YouTube Playback Quality On Desktop

  1. Open your preferred web browser and access YouTube.com.
  2. Start playing your video on the site.
  3. Select Settings (a gear icon) in the video player’s bottom bar.
  4. Select Quality and choose your preferred quality.

Changing YouTube Playback Quality On Mobile

  1. Open the YouTube app on your iPhone, iPad, or Android phone.
  2. Play a video.
  3. Select Settings (a gear icon) in the video player’s top-right corner.
  4. Choose Quality in the menu.
  5. Select Advanced and choose your preferred video quality.

Set the Default Video Quality in YouTube for Android, iPhone, and iPad

Unlike YouTube’s desktop site, you can set the default video quality in the platform’s app on your iPhone, iPad, or Android device. This means you can fix your YouTube reverting to 360p quality issue by choosing your preferred video resolution in the app.

Note that YouTube will use your chosen video quality for all future video playbacks in the YouTube app on your phone.

  1. Launch the YouTube app on your phone.
  2. Select You in the app’s bottom bar.
  3. Tap Settings (a gear icon) in the top-right corner.
  4. Select Video quality preferences in the menu.
  5. Choose Higher picture quality in both Video Quality on Mobile Networks and Video Quality on Wi-Fi sections.

Note that YouTube will use relatively more internet data when you choose to play your videos in high quality. You might want to keep an eye on your data usage if you have a limited data plan.

Clear YouTube’s Cache on Your Android Phone

If YouTube continues to bring your videos to 360p quality, it’s possible the app’s cached files are corrupted. When such corruption happens, your app can cause various random problems.

Luckily, you can fix your app’s bad cache by wiping off the cache on your phone. This doesn’t delete your data in the app and allows you to fix many issues with your app.

Note that you can only clear an app’s cache on Android. The iPhone and iPad don’t allow you to remove an installed app’s cached data.

  1. Tap and hold on YouTube on your home screen or in your app drawer.
  2. Select App info in the menu.
  3. Choose Storage usage on the following screen.
  4. Select Clear cache to delete your app’s cached data.
  1. Launch your YouTube app and play your videos.

Uninstall and Reinstall YouTube on Your iPhone or iPad

If you’re using YouTube on an iPhone or iPad, and the app continues to play your videos in 360p quality, remove and reinstall the app to see if that fixes your issue. This is because your app’s core files might be corrupted, causing the problem.

  1. Find YouTube on your device’s home screen.
  2. Tap and hold on the app and select Remove App > Delete App.
  3. Reinstall the app by opening App Store, finding YouTube, and selecting the download icon.

Reset Your Desktop Web Browser’s Settings

One reason YouTube defaults to 360p video quality on desktop is that your web browser’s settings are configured incorrectly. You or someone else may have tweaked your browser settings incorrectly, causing the problem.

In this case, reset your browser settings, and your issue should be resolved.

You can reset Google Chrome by opening the browser, selecting the three dots in the top-right corner, choosing Settings, selecting Reset settings in the left sidebar, choosing Restore settings to their original defaults on the right, and selecting Reset settings.

To reset Mozilla Firefox, open the browser, select the three horizontal lines in the top-right corner, choose Help > More troubleshooting information, select Refresh Firefox, and choose Refresh Firefox in the prompt.

You can bring Microsoft Edge’s settings to the defaults by launching the browser, selecting the three dots in the top-right corner, choosing Settings, selecting Reset settings in the left sidebar, choosing Restore settings to their default values, and selecting Reset.

Close and relaunch your web browser when you’ve reset the settings, then launch YouTube.com and see what quality your videos play in.

Force YouTube to Use Your Specified Video Quality Using a Web Browser Extension

If your issue still isn’t resolved in your desktop web browser, you can utilize a browser extension to force YouTube to use your specified resolution for your videos. This prevents the site from switching to 360p for your video playbacks.

If you’re a Google Chrome or Microsoft Edge user, you can get the Auto HD/4k/8k for YouTube – YouTube Auto HD extension. Mozilla Firefox users can achieve the same in their web browser using the YouTube High Definition add-on.

Once you’ve installed an extension, configure that extension and choose your preferred video quality. Then, YouTube will play all your videos in your chosen resolution.

Prevent YouTube From Switching to 360p Quality for Your Videos

Gone are the days when 360p was considered a good resolution for videos. If YouTube keeps reverting to that quality, use the methods described above, and your issue will be resolved. YouTube will then play your videos in your chosen quality, allowing you to enjoy your watching sessions.

]]>
https://www.online-tech-tips.com/google-softwaretips/why-does-youtube-default-to-360p-and-how-to-fix-it/feed/ 0
6 Best Gmail Alternatives for Different Types of Users https://www.online-tech-tips.com/google-softwaretips/6-best-gmail-alternatives-for-different-types-of-users/ https://www.online-tech-tips.com/google-softwaretips/6-best-gmail-alternatives-for-different-types-of-users/#disqus_thread Sandy Writtenhouse]]> Fri, 24 Nov 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99209

Gmail is everywhere. With over 1.8 billion users worldwide, it’s the go-to email service for many. However, it has its limitations. If you would prefer not to use it, we […]]]>
Gmail is everywhere. With over 1.8 billion users worldwide, it’s the go-to email service for many. However, it has its limitations. If you would prefer not to use it, we have the best gmail alternatives for you.

The Best Free Gmail Alternatives for Business or Personal Use

With these several solid Gmail alternatives, there’s bound to be one email app on this list that has the features you need.

1. Best for Microsoft Users: Outlook.com

You don’t have to be limited to a desktop email application just because you want to use Outlook instead of Gmail. Microsoft provides a web-based Outlook option at no charge, and you can log in with your existing Microsoft account.

If you do decide to use Microsoft Outlook on your desktop or mobile device later, you can simply use your Outlook.com account. Plus, you have a built-in calendar and address book for a handy organized package.

Notable Features

Outlook.com is available for free with an optional upgrade to Microsoft 365 for premium features including ad-free email, more OneDrive and email storage space, advanced security features, and more. Plans start at $1.99 per month.

2. Best for Apple Users: iCloud Mail

Like those who prefer Microsoft products, maybe you’re partial to Apple. In this case, iCloud Mail is the way to go. Even if you don’t have an iPhone or Mac, you can create a free iCloud account and use the mail service, along with other services, without spending a dime.

While iCloud Mail on the web may not be as full-featured as similar email clients, you can sync it with your Apple devices for a seamless transition.

Notable Features

  • Set up automatic email forwarding.
  • Create and manage email aliases.
  • Schedule and compose an automatic reply.
  • Create inbox rules for handling messages.
  • Enable Mail Drop for sending large email attachments.

iCloud Mail is available for free with your Apple ID. You can opt for additional storage and features like a custom email domain, ability to hide your email address, and Private Relay with iCloud+. Plans start at $0.99 per month.

Tip: Learn how to access iCloud content on your Android device.

3. Best for Email Encryption: Proton Mail

Maybe what you want is an added sense of security with an encrypted email provider. Proton Mail is a private, independently audited service with open source end-to-end and zero-access encryption.

Even if your recipient doesn’t use Proton Mail, you can send password-protected messages. Additionally, Proton Mail blocks tracking pixels, hides your IP address, and keeps ads out of your way.

Notable Features

  • Enable desktop notifications to stay up to date.
  • Send password-protected messages that expire in 28 days or a custom timeframe you choose.
  • Schedule emails to send later.
  • Request read receipts.
  • Create filters to manage your incoming messages.

Proton Mail is available for free with paid subscription plans for extra features like unlimited messages per day, a custom email domain, 15 GB of storage, unlimited folders, and more. Plans start at $3.49 per month.

4. Best for Privacy and Security: Tutanota

Another email service provider known for security is Tutanota. With end-to-end encryption, zero ads, and the option to remain anonymous with no phone number or personal data required, Tutanota is a secure email service you’ll want to explore.

Also open source like Proton Mail, Tutanota provides you with not only a secure mailbox, but an encrypted calendar, address book, inbox rules, and filters as well.

Notable Features

  • Filter your inbox by read, unread, or messages with attachments.
  • View email headers with a click.
  • Easily export or download emails, your calendar, and your contacts.
  • Merge similar contacts.
  • Create repeating events.

Tutanota is available for free with optional paid subscription plans for features like 20 GB of storage, unlimited calendars, custom domains, calendar sharing, and more. Plans start at $3.85 per month.

5. Best for Extra Services: Mailfence

If one thing you like about Gmail is its connection to Google Calendar, Contacts, and Drive, then take Mailfence for a spin. Along with email, you can create events and manage your schedule, add or import your contacts, and upload and store documents.

You’ll receive all the basic email features you need including spam filters, the ability to create and use tags, and an archive. But of course, you can take advantage of bonus features too.

Notable Features

  • Add other email accounts like Hotmail, Outlook, or Yahoo Mail for a unified inbox.
  • Activate “Short Domain” for your @mailfence.com email address.
  • Create email signatures and customizable templates.
  • Set up two-factor authentication for added security.
  • Add a personal key for secure emails.

Mailfence is available for free with optional paid subscription plans for features like aliases, email domains, filters, mobile sync, and more document storage. Plans start at $3.85 per month.

6. Best for Yahoo and AOL Fans: Mail.com

Whether you currently use or have previously used Yahoo or AOL for email, you’ll get the same familiar feel with Mail.com. Once you create your account and log in, you’ll see a handy list of services along the top of your personalized page.

You have the Cloud for storing files and photos, Contacts for your besties, and an Organizer for your calendar of events. You can also use the Online Office, play some Games, take advantage of the Translator, or visit the Blog.

Notable Features

  • Use Quick Response to reply instantly without composing an entire email.
  • Choose from attractive stationeries both with and without images.
  • Pick from a variety of domain names per industry.
  • Create inbox filter rules for better organization.
  • Enable spam protection, virus protection, and manage both block and allow lists.

Mail.com is available for free with optional premium features including scheduling emails, read receipts, 12 GB of cloud storage, an ad-free inbox and more. Premium Mail is $9.99 for three months or $29.99 for 12 months.

Which Gmail Alternative Will You Pick?

Which email provider will you choose, and will you use the free version or opt for a premium plan? Let us know!

For more, look at how to automatically log out of your Gmail or Google account.

]]>
https://www.online-tech-tips.com/google-softwaretips/6-best-gmail-alternatives-for-different-types-of-users/feed/ 0
How to Check Word Count in Google Slides Presentations https://www.online-tech-tips.com/google-softwaretips/how-to-check-word-count-in-google-slides-presentations/ https://www.online-tech-tips.com/google-softwaretips/how-to-check-word-count-in-google-slides-presentations/#disqus_thread Dilum Senevirathne]]> Tue, 21 Nov 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99165

Google Slides is a fantastic tool for crafting stunning presentations. But if you want to know how many words you’ve used, Google Slides doesn’t tell you that directly. Don’t worry, […]]]>
Google Slides is a fantastic tool for crafting stunning presentations. But if you want to know how many words you’ve used, Google Slides doesn’t tell you that directly.

Don’t worry, though. A simple solution is to export your presentation to a widely compatible file format and check the word count using alternative applications and tools. This step-by-step guide will walk you through the process.

man using a laptop

Method 1: Download the Presentation as a Text File

The most straightforward way to check the word count of a Google Slides presentation is to download it as a text file. You can paste the words into a text editing application or an online word count tool to get the exact figure.

To download a Google Slides presentation in the .TXT format:

  1. Open the presentation in Google Slides.
  2. Select File on the top menu and point to Download.
  3. On the list of available formats, choose Plain Text (.TXT).
downloading a google doc as plain text
  1. Wait until Google Slides converts and downloads the presentation in the .TXT format. You should find the text file within the Downloads folder of your PC or Mac.

Now that you have the presentation as a text file, it’s time to check the word count. The native Notepad (PC) and TextEdit (Mac) applications are incapable of showing word counts, so you must:

  1. Open the .TXT file—double-clicking it should automatically open it in Notepad or TextEdit.
opening the saved text file
  1. Press Ctrl + A (PC) or Cmd + A (Mac) to highlight all text within the file, and then Ctrl + C (PC) or Cmd + C (Mac) copy the selected text to the clipboard. You can also use the Select All and Copy options on the Edit menu if you do not prefer keyboard shortcuts.
selecting all in the text document and copying
  1. Paste the contents into a word processor like Microsoft Word (you should see the word count on the bottom left corner of the screen) or Google Docs (select Tools > Word Count on the menu bar). However, a much easier alternative is to copy everything to a site like Word Count.
word count web site

If you’re a Mac user, there’s also a relatively straightforward TextEdit-based workaround you can use to determine the word count of a TXT file. It can be slightly inaccurate, however.

checking word count in textedit

Just open the .TXT file in TextEdit, and Press Cmd + F (or select Edit > Find on the menu bar) to invoke the Search tool. Then, select the Search icon on the left corner of the Search field and choose Insert Pattern > Any Word Characters. The word count should appear in the right corner of the Search field.

Method 2: Convert to PPTX and Display Word Count in PowerPoint

If you have Microsoft PowerPoint installed on your PC or Mac, you can convert the Google Slides presentation as a .PPTX file, import the document to PowerPoint, and check the word count that way.

To download a Google Slides presentation as a .PPTX file:

  1. Open the presentation in Google Slides.
  2. Select File on the top menu and point to Download.
  3. Select Microsoft PowerPoint (.PPTX) on the drop-down menu.
saving a slide as a powerpoint document

To check the word count in Microsoft PowerPoint:

  1. Open the exported .PPTX file in PowerPoint.
opening the file in powerpoint
  1. Go to File > Info (Windows)/Properties (macOS) on the menu bar.
viewing properties in powerpoint
  1. Select Show All Properties (Windows) or Statistics (macOS). You should see the word count of the presentation next to Words.
checking word count on the properties sheet

You Don’t Have to Guess Anymore

Although Google Slides has no built-in word count feature, that doesn’t mean you’re out of options. With the methods above, you can quickly determine the number of words in your presentations. Whether you prefer downloading your slides as a text file or using the word count capabilities of Microsoft PowerPoint, you won’t have to guess the length of presentations anymore.

Sadly, there’s no way to keep track of your word count in real-time like in Google Docs. But until Google implements such a feature, it’s a hassle you must put up with for the time being.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-check-word-count-in-google-slides-presentations/feed/ 0
How to Create a Google Calendar Event From Gmail https://www.online-tech-tips.com/google-softwaretips/how-to-create-a-google-calendar-event-from-gmail/ https://www.online-tech-tips.com/google-softwaretips/how-to-create-a-google-calendar-event-from-gmail/#disqus_thread Sandy Writtenhouse]]> Thu, 16 Nov 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=99068

Stop the back-and-forth via email when you’re trying to schedule a Google Calendar event. You can create a Google Calendar event right in Gmail. Create an Event From an Email […]]]>
Stop the back-and-forth via email when you’re trying to schedule a Google Calendar event. You can create a Google Calendar event right in Gmail.

Create an Event From an Email

You have two simple ways to create a Google Calendar event from an email in Gmail. One method is ideal for when you’re composing a new message, while the second works well if you’re replying, forwarding, or composing a new email.

Create an Event From a Received Message

When you receive an email that prompts an event, you can set one up in Google Calendar in just a few steps.

  1. Select the email in your inbox or open it in a new window.
  2. Use the three vertical dots in the toolbar at the top to pick Create event.
  1. When Google Calendar opens in a new tab, you’ll see the subject line of the email as the event title, the description as the message body, and the sender as a guest. You can edit the title, add more guests, and then complete the other event details as normal.
  1. Select Save at the top to finish and share the event with the email sender and other guests.

Create an Event for a New Message, Reply, or Forward

If you’re composing a new message, replying, or forwarding an email, you can create a Google Calendar event easily.

  1. At the bottom of the message window, select the Calendar icon or three vertical dots. Move to Set up a time to meet and pick Create an event.
  1. You should then see a new event window on the right side of Gmail. If you’re replying to an email with the event, you’ll see the title as the email subject and the sender as a guest, and you can edit both. For a new message, create the event as you normally would with a title, the date and time, and the guests.
  1. When you finish adding the event details, select Save at the bottom. If prompted to send the invitation email to the guest, choose Send or Don’t send per your preference.
  1. Whether you choose Send or Don’t send above, the invitation will still appear inside the email window. You can then complete the message and send it like normal.

If you want to remove the event from the email, use the X in the top right corner.

Send Available Times and Create an Event

Another handy time-saving feature for scheduling events from Gmail allows you to send times that you’re available to your recipient. They can then select a time to create the event in Google Calendar.

The feature is available to all Google Workspace customers as well as those with personal Google accounts.

To use this scheduling option, here are a few things to keep in mind:

  • The feature currently only works for one-on-one meetings.
  • If you include multiple recipients, only the first person to respond will become an event guest.
  • You can only use the feature for your primary Google Calendar, as of this writing.

Note that Google could update these limitations at any time.

Send Your Free Times

You can send selected times to your recipient in a new email, reply, or forward the same way.

  1. Select the Calendar icon or three vertical dots at the bottom of the email window. Move to Set up a time to meet and pick Offer times you’re free.
  1. You’ll see Google Calendar open in a sidebar on the right. At the bottom of the sidebar, use the first drop-down menu to pick a duration for your availability.
  1. Choose Add a date and select the date from the pop-up calendar.
  1. Pick the start and end times for the date you selected.
  2. To add another timeframe for the same date, use the plus sign to the right.
  3. To add availability for another date and time, select Add a date.
  4. When you finish, choose Next at the bottom.
  1. On the subsequent screen, add or edit the Event title and Event duration per your preference. You can also adjust or add more dates and times if needed.
  1. To add a location or conferencing details, expand More Info and enter the information.
  2. When you’re ready, select Add to email at the bottom of the sidebar.
  1. You’ll then see the Proposed Times box within the Gmail message body. Simply complete your email and send it on its way.

Create the Event

After you follow the above steps to send available times to your recipient, they can select one of the date and time slots in the email to accept and schedule the event.

They’ll then see a pop-up message asking for their name and email address. They then select Confirm.

They’ll receive a confirmation message with the date and time, and you’ll get an email letting you know.

To accept the time they selected and save the event, select Yes. Alternatively, choose No to decline or Maybe if you’re unsure.

If you accept, you’ll see the event pop open in Google Calendar, saved and confirmed.

Gmail Makes Scheduling Simple

Whether you create your event from an email you’re composing or reply to a recipient with your available times, the integration with Gmail and Google Calendar makes scheduling a breeze.

For more, look at these pro tips for using Google Calendar.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-create-a-google-calendar-event-from-gmail/feed/ 0
Google Chrome Theme Keeps Changing? 3 Fixes to Try https://www.online-tech-tips.com/google-softwaretips/google-chrome-theme-keeps-changing-3-fixes-to-try/ https://www.online-tech-tips.com/google-softwaretips/google-chrome-theme-keeps-changing-3-fixes-to-try/#disqus_thread Jake Harfield]]> Thu, 09 Nov 2023 11:00:00 +0000 https://www.online-tech-tips.com/?p=98934

Google Chrome is a well-known web browser that’s famous for its speed, usability, and custom functions. One of its most popular features is the ability to change the look and […]]]>
Google Chrome is a well-known web browser that’s famous for its speed, usability, and custom functions. One of its most popular features is the ability to change the look and theme of the Chrome browser to suit your personal preferences.

However, some users have reported that Chrome reverts back to the default theme whenever they restart the app. In this tutorial, we’ll explain why the Google Chrome theme keeps changing and how to fix it.

Why Does My Chrome Theme Keep Changing?

When you add a new theme to Chrome, it’ll change the appearance of your toolbar, bookmarks bar, and background image. The problem is, Chrome seems to automatically change themes and color schemes to match the background image — so if it changes, the whole theme changes.

Worse yet, there seems to be a few variations of this glitch, including:

  1. The theme changes as soon as you add a new background image on the New Tab page. Usually, the color scheme changes to match the new image.
  2. The theme reverts to default when you restart the Chrome browser.
  3. The theme resets to default when you restart your device.

Unfortunately, as of the time of writing this article, there’s been no official response from Google as to why this glitch is occurring or how to fix it.

However, the likely cause is a setting called “Customize Chrome color extraction.” This setting seems to make your homepage color scheme change according to whichever theme you download from the Chrome Web Store.

Another potential reason is that your Chrome settings on different devices are conflicting with each other. Your Chrome theme syncs between Windows, iOS, Mac, and Android devices if they’re logged into the same Google Account. Syncing issues may cause problems with your theme, causing it to revert to default.

How to Stop Google Chrome’s Theme From Changing Automatically

So far, there seem to be three ways to fix the Chrome color-shifting glitch:

1. Check Chrome’s Customization Settings

Google Chrome’s customizations let you add different themes and custom colors. But, if you leave its settings on default, it will automatically shift these depending on your background images and other changes. To fix this:

  1. Open Google Chrome and select Customize Chrome in the bottom-right corner of the sidebar.
  1. Select Reset to Classic Chrome.

2. Disable Chrome Flags

Google Chrome’s Flags offer users a way to enable and disable certain Chrome features that don’t show up in the settings menu. There are two Chrome Flags which appear to make the Chrome theme change automatically. To fix this:

  1. Open Chrome.
  2. Type “chrome://flags” into the search bar and press Enter.
  3. Find Customize Chrome color extraction and change its value to “Disabled.”
  1. If that doesn’t fix the issue, search for Dynamic color gamut and change the value from “Default” to “Disabled.” Depending on your version of Chrome, this option may not be available.

3. Reinstall Your Theme

If you’re still having issues, you can try to uninstall and reinstall the theme via the Google Web Store:

  1. Open Chrome.
  2. Select the three vertical dots in the top-right corner, then select Settings from the pop-up menu.
  1. Choose Appearance.
  1. Under “Theme”, select Reset to default.
  1. Press Open Web Store, locate the theme, and select Add to Chrome.

Choose a New Chrome Theme? Why Not

Google Chrome offers a wide range of light and dark themes, plugins, and even a dedicated Dark Mode so that you can make your browsing experience as seamless as possible. Hopefully, this troubleshooting article has helped you resolve all of your Chrome theme issues, and you can go back to browsing in peace.

]]>
https://www.online-tech-tips.com/google-softwaretips/google-chrome-theme-keeps-changing-3-fixes-to-try/feed/ 0
Top 6 Ways to Lock Your Chromebook Screen https://www.online-tech-tips.com/google-softwaretips/top-6-ways-to-lock-your-chromebook-screen/ https://www.online-tech-tips.com/google-softwaretips/top-6-ways-to-lock-your-chromebook-screen/#disqus_thread Paula Beaton]]> Sun, 15 Oct 2023 10:00:00 +0000 https://www.online-tech-tips.com/?p=98520

If you’re using your Chromebook in a public place or stepping away from your Chromebook, you might want to lock your screen. We’ll show you how to lock screen on […]]]>
If you’re using your Chromebook in a public place or stepping away from your Chromebook, you might want to lock your screen. We’ll show you how to lock screen on Chromebook in several different ways, as well as a couple of different ways to unlock your screen.

How to Lock Screen on Chromebook

There are actually six different ways to lock your Chromebook screen, depending on your preferences. We’ll explain each method below, so you can choose the one that works best for you.

Use the Power Button

This is one of the quickest and easiest ways to lock your Chromebook screen.

  1. Press and hold the Power button.
  2. Select Lock.

Use the Lock Key

Here’s another easy way to lock screen on Chromebook if you’re stepping away for a few minutes.

  1. Press and hold the Lock key on your Chromebook keyboard.
  2. After around two seconds, your Chromebook screen should lock.

Close the Lid

You can simply close the lid of your Chromebook to lock your screen. You’ll need to ensure that the options to lock your screen when the lid is closed are enabled, though. Here’s how to do that.

  1. Click the clock in the lower-right corner of your screen and select the Settings gear icon.
  2. Under Security and Privacy, select Lock Screen and Sign-In.
  3. Enter your Google account password and click Confirm.
  4. Turn on the Lock When Sleeping or Lid is Closed toggle.

Use the Magnifying Glass

Here’s another quick and easy way to lock your Chromebook screen.

  1. Click the Magnifying Glass key + L on your Chromebook keyboard.
  2. Your Chromebook screen should now be locked!

Click the Clock

Here’s another quick way to lock your Chromebook screen.

  1. Click the clock in the lower right corner of your screen.
  2. Click Lock.

Walk Away

If your Chromebook is inactive for a period of time, your screen will turn off and then your Chromebook will sleep. This is not the best option if you’re using your Chromebook in a public place, as somebody could access your Google account and other information before the screen locks. You also need to ensure that you have turned on the Lock When Sleeping function, as described above.

However, if you’re at home or another secure location, you may find this is the lock method you end up relying on most often. The amount of time for your screen to turn off and go to sleep varies depending on whether your Chromebook is plugged in or not.

Plugged in: Your screen will turn off after eight minutes and your Chromebook will go to sleep after 30 minutes.

Not plugged in: Your screen will turn off after six minutes and your Chromebook will go to sleep after 10 minutes.

How to Show the Lock Screen on Waking

You always want to ensure that your Chromebook shows the lock screen when it wakes up. This ensures that nobody else can access anything on your Chromebook — including your Google account. By default, the lock screen is set to show when your Chromebook wakes up. But if you want to double-check that this feature is enabled, or turn it on if it’s actually off, here’s how to do that.

  1. Click the Clock in the lower-right corner of your screen and select the Settings gear.
  2. Scroll down and under Security and Privacy, select Lock Screen and Sign-In.
  1. Enter your Chromebook password and click Confirm.
  2. Under Lock Screen From Sleep Mode, select either Password Only or PIN or Password is selected.

How to Unlock Your Chromebook Screen

You can either use your phone or a PIN or your Google password to unlock your Chromebook screen. Using your phone is generally the speedier option, provided you don’t leave your phone lying around.

Unlock Your Screen with a PIN/Password

While you can use your Google password to unlock your screen, we’d recommend using a PIN. It’s easier and quicker to enter, especially if your 2-in-1 Chromebook is in tablet mode. Here’s how to set up a PIN on your Chromebook.

  1. Click the clock at the bottom right of your screen and select the Settings gear icon.
  2. Under Security and Privacy, select Lock Screen and Sign-In.
  3. Enter your Google password, then click Confirm.
  4. Select PIN or Password > Set up Pin
  5. Enter your PIN of choice (six digits or more).
  6. Select Continue.
  7. Re-enter your PIN, then select Confirm.

The next time your Chromebook wakes up, you can log in using this PIN instead of your Google password.

Unlock Your Screen with Your Phone

You can also connect your Android phone to your Chromebook so your screen will unlock when your phone is nearby. Here’s how to do that, but first, you’ll need to ensure you’re running the most recent versions of Chrome and Android. You’ll also need to be signed in to your Google account on your phone and Chromebook, and have Bluetooth enabled on both devices.

  1. Click the clock at the bottom right of your screen, then select the Settings gear.
  2. Under Connected Devices, find Android Phone and select Set Up.
  3. From the menu on the left, select the phone you want to connect. Your Chromebook may automatically detect your device, so check that it has selected the right device.
  4. Click Accept and Continue.
  5. Enter your Google account password when prompted.
  6. Click Done.

When your phone is in Bluetooth range of your Chromebook, you can simply click your profile picture to log in!

Now that you know how to lock Chromebook screen, you’ll never need to worry about your Chromebook when stepping away from your desk, whether you’re working from home, the office, or a coffee shop. To learn even more about your Chromebook, check out these advanced Chromebook tips to become a power user, or dive into these Chromebook tips and tricks to get the most from your Chromebook.

]]>
https://www.online-tech-tips.com/google-softwaretips/top-6-ways-to-lock-your-chromebook-screen/feed/ 0
How to Unsubscribe From a YouTube Channel https://www.online-tech-tips.com/google-softwaretips/how-to-unsubscribe-from-a-youtube-channel/ https://www.online-tech-tips.com/google-softwaretips/how-to-unsubscribe-from-a-youtube-channel/#disqus_thread Ben Stockton]]> Thu, 14 Sep 2023 22:00:00 +0000 https://www.online-tech-tips.com/?p=98087

YouTube is a great platform to watch videos on various topics, from entertainment to education. If a channel you’ve loved in the past has lost its charm, however, it might […]]]>
YouTube is a great platform to watch videos on various topics, from entertainment to education. If a channel you’ve loved in the past has lost its charm, however, it might be time to unsubscribe.

You may want to unsubscribe from a YouTube channel that you no longer find useful, subscribed to by mistake, or that you’ve simply lost interest in. Unsubscribing from a YouTube channel will stop you from being notified when new videos are released and can help to clean up your YouTube recommendations.

Whatever the reason, you can easily unsubscribe from a YouTube channel using your web browser or by using the YouTube mobile app using the steps below.

How to Unsubscribe from a YouTube Channel on a Web Browser

The easiest way to remove a YouTube subscription from your account is to use your web browser. You can control your account preferences (such as your current channel subscriptions) from the YouTube website on your PC, Mac, or Chromebook.

  1. From your web browser, open YouTube, sign in with your Google account, and select the Subscriptions tab from the sidebar on the left.
  1. You’ll see a list of channels that you’re subscribed to and their latest videos. Select the Manage button in the top-right.
  1. To unsubscribe from a channel, click the Subscribed button next to it, then choose Unsubscribe from the drop-down menu.
  1. Alternatively, open a channel’s home page via your Subscriptions tab or YouTube’s search tool and press the Subscribed button in the top-right, then choose Unsubscribe from the drop-down menu.
  1. When prompted, press Unsubscribe in the pop-up to confirm your choice.
  1. Once you’ve unsubscribed from the channel, the button will change to Subscribe—this will confirm that you’re no longer subscribed to the channel.

You can also unsubscribe from a channel while watching one of its videos—just click on the Subscribed button below the video and confirm your action to remove the subscription.

How to Unsubscribe From a YouTube Channel on the YouTube Mobile App

If you prefer to use YouTube on your mobile device, you can control your subscriptions using the app. To remove a YouTube subscription on mobile, follow these steps.

  1. Open the YouTube app on your mobile device and sign in with your Google account.
  2. Tap the Subscriptions icon from the menu at the bottom of the screen. You’ll see a list of channels that you’re subscribed to at the top and their latest videos.
  1. Tap on a channel name, channel icon, or search for it manually using the YouTube search tool to go to its homepage.
  2. On the channel’s homepage, tap the Subscribed button below the channel’s name.
  1. A pop-up window will ask you to confirm your action—tap Unsubscribe to confirm.
  1. Once you’ve confirmed the removal of the subscription, the button below the channel’s name will change to Subscribe again. This is confirmation that you’re no longer subscribed to the channel.

Like PC users, you can also unsubscribe from a channel while you’re watching one of its videos. Below the playing video (outside of fullscreen mode), tap the Subscribed button to remove the subscription—you’ll need to confirm that you want to unsubscribe when you do this.

Managing Your YouTube Account

Thanks to the steps above, unsubscribing from YouTube channels is a quick and easy process that you can complete from a PC, Mac, or mobile device. Removing channels you don’t watch anymore from your subscription list will limit the notification spam, but you can always disable your YouTube notifications to help this further.

Struggling with the amount of ads you’re seeing while a video is playing? You can always look at different ways to block YouTube ads, from a YouTube Premium subscription to other methods, such as using a VPN.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-unsubscribe-from-a-youtube-channel/feed/ 0
YouTube Not Working On Android? 6 Ways to Fix https://www.online-tech-tips.com/google-softwaretips/youtube-not-working-on-android-6-ways-to-fix/ https://www.online-tech-tips.com/google-softwaretips/youtube-not-working-on-android-6-ways-to-fix/#disqus_thread Ben Stockton]]> Mon, 11 Sep 2023 10:00:00 +0000 https://www.online-tech-tips.com/?p=98006

In an age where we rely heavily on streaming platforms for entertainment and information, a smooth user experience is the bare minimum you should expect. Unfortunately, even apps like YouTube […]]]>
In an age where we rely heavily on streaming platforms for entertainment and information, a smooth user experience is the bare minimum you should expect. Unfortunately, even apps like YouTube aren’t immune from crashes or functionality issues.

If YouTube isn’t working on your Android device, it can be frustrating to resolve. To help you, here are six different fixes you can try to resolve YouTube if it isn’t working on your Android device.

Restart Your Android Device

One of the simplest ways to fix an issue with YouTube not working on your Android device is by restarting it. Restarting your Android device can help clear any temporary glitches and allow the app to function properly.

To restart your Android device, follow these steps.

  1. Press and hold the power button on your device until the power options menu appears.
  2. Tap the Restart or Power Off option, depending on your device’s menu.
  1. If you choose Power Off, wait for a few seconds and press the power button again to turn it back on.
  2. Once your device has restarted, try opening the YouTube app to check if the issue has been resolved.

With a freshly restarted Android device, your YouTube app should start to work again. If it isn’t, however, you’ll need to try one of the further fixes below.

Check Your Time Is Synced Properly

It might seem odd, but if your Android device has the wrong time, YouTube might stop working. This is because the time between your device and YouTube’s servers need to be synced properly for certain (hidden) services behind-the-scenes to work properly.

To ensure your device’s date and time are synced correctly, follow these steps.

  1. Open the Settings app.
  2. Look for Date & time settings—this may be listed under General, System, or similar, depending on your version of Android.
  1. Enable the toggle for Automatic date & time. Your device will default to using your network-provided date and time settings.
  1. The changes should be applied immediately, but you can restart your device to be sure the changes have taken effect.

If enabling the automatic date and time feature doesn’t work, you can manually set the correct date and time for your device.

  1. To do this, open the Settings app on your Android.
  2. Open your Date & time settings (under General, System, or similar).
  1. Disable the toggle for Automatic date & time.
  2. Tap Set date and choose the correct date, then tap OK.
  3. Tap Set time and choose the correct time before tapping OK.

After adjusting your device’s date and time settings, open the YouTube app and check if the issue has been resolved.

Check Your Data or Wi-Fi Connection

One of the most common reasons that YouTube might not work properly on your Android device is a poor internet connection. Issues like YouTube videos pausing or choppy video playback can often be resolved by checking that your mobile data or Wi-Fi connection is active and working properly.

To check your data connection, follow these steps.

  1. Open your Android device’s Settings app.
  2. Open your Network & Internet or Connections menu. The name of this menu will vary, depending on the device you’re using and the version of Android it runs.
  1. First, open your Data usage menu and make sure that the Mobile data or Cellular data setting is enabled. If it’s already on, try turning it off and back on again. Look for a data indicator (such as 4G, 5G, or similar) next to the signal strength bars at the top of the screen to confirm that you have a signal.
  1. Next, open your Wi-Fi settings menu.
  2. Make sure that Wi-Fi is enabled and you’re connected to a network. Once you are, check the Wi-Fi signal strength bars at the top of the screen to ensure a strong connection.

Clear the Data and Cache for the YouTube App

If you’re having trouble trying to troubleshoot an issue with YouTube not working on Android, you may find it easier to clear your cached data from the app. This can help you resolve minor glitches with the app itself that could stop it from working, such as the YouTube search bar not working.

To clear the data and cache for the YouTube app, follow these steps. The steps below might slightly vary depending on your phone model.

  1. Open the Settings app on your Android phone.
  2. Select Apps or Apps & Notifications (depending on your Android version).
  1. Choose YouTube from the list of apps. If you don’t see it in the list, use the search bar at the top to help you locate it.
  1. Next, tap the Storage or Data option.
  1. Select Clear cache to remove cached files. This step will not delete your saved data, like account information and preferences.
  2. Next, select Clear data to delete all the app’s saved information. This will also remove your account details and preferences from the app, so you’ll need to sign in again afterward.

After clearing your data, restart the YouTube app and check if the issues are resolved.

Check for App and Device Updates

Keeping your YouTube app and device software updated is crucial as it ensures that you have the latest bug fixes, security patches, and features. By regularly updating the app, you can minimize the chances of encountering any issues.

To update your YouTube app, follow these steps.

  1. Open the Google Play Store app on your Android device.
  2. Select your profile icon in the corner and select Manage apps and devices from the menu.
  1. In the Manage apps and device menu, tap the Manage tab, then tap the Updates available icon below it.
  1. Look for the YouTube app in the list of apps with updates available. If an update is available, tap it to select it, then press the update button in the top-right.

Once the YouTube app is updated, open it to see if the issues are resolved.

Remove and Reinstall YouTube App Updates

If you’re still having problems with YouTube crashing on Android, you might need to try and remove any recent updates and reinstall them. Most Android devices come with YouTube preinstalled, so you won’t be able to remove it entirely.

However, removing and reinstalling any app previous YouTube app updates will ensure that you have the latest version with any available bug fixes.

To remove and reinstall the YouTube app, follow these steps.

  1. Open the Google Play Store and search for the YouTube app.
  2. Select Uninstall from the menu. This will remove the updates from your phone and restore the original version of YouTube that was preinstalled on your phone.
  1. Once removed, tap Update to reinstall the updated version of the YouTube app.
  1. Tap Open to launch the updated YouTube app afterward.

After successfully reinstalling the updated version of the YouTube app, check to see if the issues you’ve been having are now resolved.

Use the YouTube Mobile Website

It’s a last resort, but if the YouTube app still isn’t working on Android, you can try and use the mobile website instead. You won’t have the same level of functionality as you would have in the app, but using the YouTube website will still allow you to watch videos.

To do this, open your preferred mobile web browser—Chrome is recommended, but you can use Firefox or an alternative if YouTube isn’t working in Chrome. In the address bar, type m.youtube.com and press Enter.

The YouTube website will load and you can begin to watch videos. If you want to access your watch history or subscription list, you can sign in using your Google account details first.

Using YouTube on Android

By following the steps above, you can quickly resolve the problem with YouTube not working on Android (in most cases). If the YouTube app is too slow, don’t forget to give your device a quick restart—it should help to fix things quickly.

If you still have trouble, don’t forget to try using YouTube on another device, such as using the YouTube app on Roku. If you get a black screen on YouTube, make sure to check that your connection is working properly and you’re not using any ad blockers on your device.

]]>
https://www.online-tech-tips.com/google-softwaretips/youtube-not-working-on-android-6-ways-to-fix/feed/ 0
How to Insert Word Art in Google Docs https://www.online-tech-tips.com/google-softwaretips/how-to-insert-word-art-in-google-docs/ https://www.online-tech-tips.com/google-softwaretips/how-to-insert-word-art-in-google-docs/#disqus_thread Marshall Gunnell]]> Tue, 05 Sep 2023 22:00:00 +0000 https://www.online-tech-tips.com/?p=97930

Google Docs is widely recognized for its large collection of features and its ease of use. One often-overlooked feature is the ability to insert Word art, which is quietly nested […]]]>
Google Docs is widely recognized for its large collection of features and its ease of use. One often-overlooked feature is the ability to insert Word art, which is quietly nested in the drawing tool.

This free Word art tool lets you turn a regular document into a more visually appealing piece. Here’s where you can find this somewhat-hidden Drive feature and how to use it.

How to Create and Insert Word Art in Google Docs

You can only insert Word art in the web version of Google Docs and not the mobile app. Open Google Docs in your browser and then create a new document or open the document you want to insert the Word art in.

  1. Click the Insert option in the menu bar.
  2. Hover your cursor over the Drawing option in the dropdown menu and then select New from the sub-menu.
  1. The Drawing window will appear. You’ll see a checkerboard which you can draw on, as well as several options in the header menu. Click Actions and then select Word art from the menu.
  1. Next, enter the text that you want to turn into Word art in the text box that appears. You can add multiple lines by pressing Shift + Enter. When you’re ready to save, press Enter.
  1. Your text will now appear on the checkerboard as Word art. You can then customize it using the options in the header menu, like changing its color, border weight, and so on. Click Save and Close once you’re finished customizing the Word art.


The Word art will then be inserted in the Google Docs document.

Aligning Word Art With Your Text

The way your Word art interacts with surrounding text can be a bit tricky, and may sometimes cause an undesirable layout shift. There are a few options available for positioning the Word art with your text.

  • In line: This option is the default option and makes the Word art behave the same as a character written in the text. It sits directly on the line of the text.
  • Wrap text: This allows your text to wrap around the Word art. In other words, the Word art remains in place while the surrounding text adjusts to it.
  • Break text: This makes your Word art essentially act as a barrier in your document.The text will stop above the Word art and continue below it.
  • Behind text: This places the Word art behind your text. This is a good idea for art such as a watermark. Be sure there’s enough contrast between the Word art and text, though.
  • In front of text: This places the Word art in front of your text.

You can find these options in the menu that appears when you click the Word art in your document.

Choosing the right wrapping option can have a big impact on the visual implications of the document, so choose carefully.

Bring Visual Potential to Your Document

Google Docs, aside from its many other features, offers creative potential with Word art. This allows users to transform ordinary text into a visual element, drawing attention to important details when necessary.

The available wrapping options also allow you to place your Word art appropriately while keeping in mind the content of the document.

]]>
https://www.online-tech-tips.com/google-softwaretips/how-to-insert-word-art-in-google-docs/feed/ 0