MyBB Community Forums

Full Version: MyRed Theme - Transparency Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

We've been using the MyRed theme by Fayaman for some time now.

Someone pointed out earlier that a section of the profile page appears as transparent. I was wondering if anyone could suggest where I may be able to edit this. I've searched global.css and usercp.css but can't find an obvious section that I'd edit.

[Image: theme.png]

As you can see above, we have an image for the main background of the forum and the box containing the details and avatar (in the red rectangle) is transparent. I'd like to make it dark but can't figure out where to do this.

Any help would be greatly appreciated.

Ross
ACP > Templates & Styles > Templates > Member templates > open member_profile template

Below the {$header} variable, you have the <fieldset> tag, modify it like this:


<fieldset class="profile">


Now go to ACP > Templates & Styles > Styles > Your theme > open global.css

Now at the end of the file, create a new class called "profile" and put a background (if you want a darker background but keeping the translucid of it use rgba).


.profile {
        background: rgba(0, 0, 0, 0.5);
}

That's black colour but with 0.5 opacity.

Cheers.
Thank you so much, works perfectly now.

Thanks again Smile