The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Transparency coding question

+3
SarkZKalie
SLGray
Jeremy Colton Kirtley
7 posters

Go down

In progress Transparency coding question

Post by Jeremy Colton Kirtley May 12th 2022, 10:11 pm

Years ago someone from this help forum gave me a code to make part of my forum a little transparent the only problem iv ever had with it was the pictures i post are also transparent is there anyway to make just the pics solid an keep it how it is? Thanks
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 13th 2022, 12:49 am

If its impossible maybe it could just be less transparent then what it is i can also post the code if it helps?
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 13th 2022, 7:21 am

What exactly do you want to be transparent on your forum?


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 2:30 am

I guess these spots but with the pictures solid
Transparency coding question Screen11
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 2:35 am

Transparency coding question Screen10
I circled a spot where the background bleeds threw as an example
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 14th 2022, 6:42 am

Those areas you marked do not have images as backgrounds.  You will need to add them.


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Transparency coding question

Post by SarkZKalie May 14th 2022, 8:22 am

First of all, i would like to suggest you to upgrade from Phpbb2 to ModernBB or AwesomeBB for better performance

Second, just find and remove this line in your CSS
Code:
.bodylinewidth {
    opacity: .8;
}
Then add this
Code:
.bodyline {
    background: transparent!important;
}


Transparency coding question Sarkzk10
SarkZKalie
SarkZKalie
Support Moderator
Support Moderator

Male Posts : 1407
Reputation : 218
Language : English

https://rotavn.forumotion.com/

skouliki and TonnyKamper like this post

Back to top Go down

In progress Re: Transparency coding question

Post by jucarese May 14th 2022, 10:46 am

Code:
#wrap {
background-image: url('https://i21.servimg.com/u/f21/13/26/30/58/imagen11.png');
filter: alpha(opacity=65);}
Add this to modify the #Wrap in the CSS, if you already have something modified in #Wrap only add this modification. You will be removed from your AP all the background colors you have, to get it transparent.
Transparency coding question Fondo10
jucarese
jucarese
Hyperactive

Male Posts : 2431
Reputation : 114
Language : spanish
Location : SSF Admin

http://asistencia.foroactivo.com/u23082

TheCrow likes this post

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 2:50 pm

Can i upgrade without having to redo my whole page?
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 4:56 pm

I feel like maybe i didnt explain this good enough.. I dont want it completely transparent i need it partially transparent but with solid pictures
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by skouliki May 14th 2022, 5:10 pm

Please don't double post. Your posts need to be separated by 24 hours before bumping. Please use the edit button, instead!
Please read our forum rules:  ESF General Rules
skouliki
skouliki
Manager
Manager

Female Posts : 15064
Reputation : 1690
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 7:00 pm

SarkZKalie wrote:First of all, i would like to suggest you to upgrade from Phpbb2 to ModernBB or AwesomeBB for better performance

Second, just find and remove this line in your CSS
Code:
.bodylinewidth {
    opacity: .8;
}
Then add this
Code:
.bodyline {
    background: transparent!important;
}

Changing opacity to 0.9 helped but the background image is still bleeding threw into the covers is 0.9 the highest i can go? I tried 1.0 and transparency wasn't there
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by jucarese May 14th 2022, 9:23 pm

Jeremy Colton Kirtley wrote:I feel like maybe i didnt explain this good enough.. I dont want it completely transparent i need it partially transparent but with solid pictures
Try the CSS that I put you.

Transparency coding question Fondo12


As you see it puts an almost transparent background color like the images you have put, and the images of your forum do not remain transparent and look good
jucarese
jucarese
Hyperactive

Male Posts : 2431
Reputation : 114
Language : spanish
Location : SSF Admin

http://asistencia.foroactivo.com/u23082

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 14th 2022, 9:58 pm

Transparency coding question Screen13
This is the code that i added but when i added it the transparency was gone.. I also tried adding it below the code below but no luck
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 15th 2022, 4:20 am

Code:
#wrap {
background-image: url('https://i21.servimg.com/u/f21/13/26/30/58/imagen11.png') !important;
filter: alpha(opacity=65) !important;
}


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

TonnyKamper likes this post

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 16th 2022, 4:36 am

Idk what im doing wrong its driving me crazy.. I have a test account would anybody be willing to log in an try it?
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 16th 2022, 7:07 pm

After making the changes, clear your browser's history and cache.


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Jeremy Colton Kirtley likes this post

Back to top Go down

In progress Re: Transparency coding question

Post by Ape May 16th 2022, 7:16 pm

Jeremy Colton Kirtley wrote:Can i upgrade without having to redo my whole page?
Making a change to some other forum Phpbb2 to ModernBB or AwesomeBB will delete your skin and you would have to restart all over again as Phpbb2 codes are not the same at all and 95% of the codes you use now will only break your forum theme so it's not advised to change over unless you are happy to redo your theme / skin.


Transparency coding question Left1212Transparency coding question Center11Transparency coding question Right112
Transparency coding question Ape_b110
Transparency coding question Ape1010
Ape
Ape
Administrator
Administrator

Male Posts : 19084
Reputation : 1988
Language : fluent in dork / mumbojumbo & English haha

http://chatworld.forumotion.co.uk/

Jeremy Colton Kirtley likes this post

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 16th 2022, 7:37 pm

@ape if i upgraded would all of my content/posts be gone also?
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 16th 2022, 8:20 pm

The only things removed and erased would be your current theme and customized CSS.  The templates will also change.  The JavaScript/HTML coding could also not work since most are created for certain versions.


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Transparency coding question

Post by Jeremy Colton Kirtley May 16th 2022, 10:19 pm

Well the forum is for people who collect discontinued hiphop tapes would one be better then another for that? How do i upgrade?

Is it possible to have the image/album covers from inside the topics show up where i have marked as a preview
Transparency coding question Screen14
I appreciate everybody's help an patience
Jeremy Colton Kirtley
Jeremy Colton Kirtley
New Member

Posts : 20
Reputation : 1
Language : English

https://rapmaniacforum.forumakers.com/

Back to top Go down

In progress Re: Transparency coding question

Post by SLGray May 17th 2022, 7:38 am

You need to create separate topics for issues/questions that are not related.   Please stay on topic which is in the first post.


Transparency coding question Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51464
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Transparency coding question

Post by brandon_g May 31st 2022, 1:07 am

Hello,

Is this problem solved?


Transparency coding question Brando10
Remember to mark your topic Transparency coding question Solved15 when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

Transparency coding question Scre1476
Team Leader
Review Section Rules | Request A Review | Sticker Points
brandon_g
brandon_g
Manager
Manager

Male Posts : 10106
Reputation : 923
Language : English
Location : USA

https://www.broadcastingduo.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum