furycd001


YouTube can load videos and have them take up the full width & height of your browser. To make YouTube do this simply copy the video id from the url & paste it after youtube.com/embded/. For example....

STANDARD YOUTUBE VIDEO.

https://www.youtube.com/watch?v=R-WiwLZ6ZdM

FULL WIDTH & HEIGHT VIDEO.

https://www.youtube.com/embed/R-WiwLZ6ZdM


#Youtube #Web #Video


You can style multiple html links differently on the same page simply by adding a class to the link & then some css. For example the two linsk below would be styled with the css that follows....

HTML

<a href=“something dot html” class=“newclass”>Link text</a>
<a href=“somethingv1 dot html” class=“anothernewclass”>More link text</a>

CSS

a.newclass:link {
color: #444444;
text-decoration: none;
}

a.newclass:visited {
color: #444444;
text-decoration: none;
}

a.newclass:hover {
color: #f2f2f2;
text-decoration: none;
    }

a.newclass:active {
color: #444444;
text-decoration: none;
}

a.anothernewclass:link {
color: #f2f2f2;
text-decoration: none;
}

a.anothernewclass:visited {
color: #f2f2f2;
text-decoration: none;
}

a.anothernewclass:hover {
color: #222222;
text-decoration: none;
}

a.anothernewclass:active {
color: #f2f2f2;
text-decoration: none;
}

#Web #HTML #CSS #Code


Add the code below to the top of your .css file. Change the image name / location & everything’s good to go….

CSS

html {
background: url(image.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}

#Web #HTML #CSS #Code


Some people dislike YouTube’s new mini player. If you happen to be one of those people, then you can easily turn it off….

  1. Head over to your YouTube settings.
  2. Select “Playback and performance”.
  3. Uncheck “Enable Mini Player” & your done.
  4. It’s super simple.

#Youtube #Web #Video


Lubuntu is an operating system based on Ubuntu and for the most part has aimed itself towards user’s with older hardware. With the transition to LXQt currently under way, the Lubuntu team have made the decision to take a new direction. You can read everything about this on their blog post....


#Lubuntu #Linux #Lxqt


This isn’t I3.... This is xfce with a no-border theme installed. image

alt text

Here’s how to create your own no-border theme for xfce or possibly any other window manager. Just follow the steps below or download the theme from here GitHub....

  1. sudo mkdir -p /usr/share/themes/empty/xfwm4

You can replace “empty” with whatever you want. This will be the name of your theme.

  1. sudo touch /usr/share/themes/empty/xfwm4/themerc

Leave this file blank and your done.

  1. Finished!!

Open up your window manager settings and choose your newly created theme.


#Xfce #Linux #Themes #I3


Ubuntu 18.04.1 LTS has been released, offering up a bunch of updates & improvements over 18.04. It’s now a good time to upgrade if you’ve been thinking about it. You can head over to the Ubuntu Fridge to read the official announcement & then to the wiki for the release notes....


#Ubuntu #LTS #Linux #Distro