Home›Notes›How to have a transparent profile in Dolphin 6.1
How to have a transparent profile in Dolphin 6.1
Hello,
I really want to have a transparent background in my profiles, please help me how to do it, I'm not a programmer but i know some html.
Thanks!!
For example:
body
{
...
background-color:transparent;
(change/comment/delete background-image) ...
}
Also play with .main class...
Search for tags regarding main block, block header, block content, etc... in the same general.css file
Especially for the block, you can also try to replace the default background image with semi-transparent image ;-)
If you need more info, try a search on Google with "css see more
Open templates/tmpl_uni/css/profile_view.css,
and add this before #thin_column
.main
{
background : transparent;
background-repeat: no-repeat;
}
-----------------------------------------------
If you will change border and something use this:
.main
{
position:relative;
width:940px;
border:0px solid #999;
background : transparent;
background-repeat: no-repeat;
margin-bottom:5px;
margin-top:4px;
margin-left:auto;
margin-right:auto;
padding:8px see more
open : profile_view
tmpl_uni/css/profile_view
and add :
.main
{
position:relative;
background-opacity:.90;
filter: alpha(opacity=90);
-moz-opacity: 0.90;
}
just above :
#thin_column
{
width:49%;
margin-right:10px;
overflow: hidden;
}
#thick_column
{
width:49%;
overflow: hidden;
}
giving :
main
{
opacity:.90;
filter: alpha(opacity=90);
-moz-opacity: 0.90;
}
#thin_column
{
width:49%;
margin-right:10px;
overflow: hidden;
}
#thick_column
{
width:49%;
overflow: see more
Didn't work for me either. Please advise
Thanks
Can anyone help?
Thank you
.main
{
position:relative;
background-opacity:.90;
filter: alpha(opacity=90);
-moz-opacity: 0.90;
border:0px solid #999;
background : transparent;
background-repeat: no-repeat;
margin-bottom:5px;
margin-top:4px;
margin-left:auto;
margin-right:auto;
padding:8px see more