NamelessMC

Internet Explorer

Internet Explorer is not supported. Please upgrade to a more modern browser.

transparent panels
Started by William_SR

William_SR

William_SR

Member
Joined
31 Jul 2018
Last Seen
14 Nov 2019
Topics
1
Posts
2
Is there a way to make the pages with transparent panels. What I am looking for is this
 
William_SR · over 5 years ago · Last edited: over 5 years ago
Tsuki

Tsuki

Member
Joined
25 Mar 2017
Last Seen
17 Jan 2022
Topics
5
Posts
27
I dont quite understand what areas you want to have transparent.

In any case find the element you want to make transparent then...

Option 1.)
Open your CSS file and find the element design you would like to change.
add background-color: transparent; 
to the elenemt styles.
Option 2.) 
Open your HTML file for the site you wish to edit. Find the HTML element you would like to change (in this example a div)
add the cursive text to your HTML.
style="background-color: transparent;">

I hope I could help you, if you have any other questions just ask them!

TSUKI
x1   x1
Tsuki · over 5 years ago
Aireesan

Aireesan

Member
Joined
09 Nov 2015
Last Seen
07 Apr 2019
Topics
0
Posts
3
Transparent is the wrong word, you're looking for translucent. Transparent is entirely see-through whereas translucent is somewhat see-through.
You can achieve translucency with CSS by setting the background color to a RGB color that specifies the Alpha channel, which dictates how translucent the color is.
For a somewhat see-through black, use rgb(0,0,0,0.5)
x1
Aireesan · over 5 years ago
William_SR

William_SR

Member
Joined
31 Jul 2018
Last Seen
14 Nov 2019
Topics
1
Posts
2
Thanks to all I will give these a try :)
William_SR · over 5 years ago