facebook

How To Set Facebook Dark Mode

set facebook to dark mode

There are two different methods to set Facebook into dark mode. One is on desktop and the other is on your mobile Facebook app. We will go over both methods. Desktop Facebook Dark Mode Instructions The first thing you want to do is go to the upper right corner and click on your circle profile Read More

Change Facebook Password | Easy Instructions

To change Facebook password log into Facebook. At the very top right you will see a little blue arrow pointing down. Click on that arrow then you will see a menu appear. I highlighted it in red marker. After clicking on the arrow you will see a menu appear that looks like this. Scroll towards Read More

Create a Facebook Icon in CSS

Create a Facebook Icon in CSS

The first thing that we will do is set up or div to create a facebook icon in CSS. [code]<div id="facebook"></div>[/code] Next we will style the css. [code]<style> #facebook { background: blue; text-indent: -999em; width: 100px; height: 110px; border-radius: 5px; position: relative; overflow: hidden; border: 15px solid blue; border-bottom: 0; } #facebook::before { content: "/20"; Read More