Home › Forums › SKT Full Width Forum › image opacity
- This topic has 16 replies, 3 voices, and was last updated 9 years, 8 months ago by Sonl Sinha.
-
AuthorPosts
-
February 20, 2015 at 7:56 pm #4084
Hello, I’ve just installed the update and noticed that the content opacity also affects my images. Is there a way to keep images always completely opaque like in version 1.0?
Here is a link to a page: http://oliver-scheffer.org/portfolio/
Also, in the navigation sidebar second level submenus are misplaced, there is a huge gap between level 1 and 2. This way I can’t reach level 2.
Kind regards, Oliver
February 22, 2015 at 10:02 pm #4101I also have the same problem with opacity on my site. I wrote support 2 weeks ago and was told to change the opacity to 0.9 in the CSS section, BUT that just changes the body behind the photos. I was told the new update would fix this, but they have not yet sent me the files to make the update. So.. assuming you have done this with the update it looks like the problem did not go away. 🙁 Good luck!
February 23, 2015 at 12:40 pm #4111Thanks for the info! If there’s a CSS code for the background then there should be one for images, too. What is the CSS code they provided you, please?
Kind regards, Oliver
February 23, 2015 at 9:48 pm #4121This is what I used prior to the update. No luck!
Then updated this morning and still no luck 🙁 Looks identical
}
#site-nav {
background: none repeat scroll 0 0 #333333;!important;
opacity: 0.9;
}
.header .widget {
background: none repeat scroll 0 0 #333333;!important;
opacity: 0.9;
}
#content {
background: none repeat scroll 0 0 #333333;!important;
opacity: 0.9;
#colophon {
background: none repeat scroll 0 0 #333333;
opacity: 0.9;
February 24, 2015 at 4:10 am #4127Hi,
Yes this is a current problem. Why? Because any color picker in the world which we use uses hex code and while for keeping opacity of elements intact and only changing opacity of the black background we need to have RGB code.
So in case we want both i.e. color change plus background opacity change the only way out is hex code. But unfortunately using this causes the elements within the area also to be transparent.
So in case you don’t need the color to be changed and use only black and need just opacity changed let us know.
We will send a fix for this in RGB code and this would solve the issue you have.
Regards,
ShriFebruary 24, 2015 at 6:05 am #4134February 24, 2015 at 6:06 am #4135@ sktthemes:
Hello Shri!
I don’t want the colour changed, I always leave it at black. So, please send me the RGB fix.
Kind regards, Oliver
February 24, 2015 at 6:26 am #4137Hi Oliver,
Here you go: Content background color and opacity
Add this code to custom css field in Appearance>Theme Options>Layout Settings>Custom CSS:
#content{background: rgba(0, 0, 0, 0.9) !important; opacity:1!important; }Regards,
ShriFebruary 24, 2015 at 6:27 am #4138You can still change color but you have to input the RGB equivalent instead of hex code in the css code above.
Regards,
ShriFebruary 24, 2015 at 12:58 pm #4149Thank you, Shri, that worked!
Alas, there’s still the matter with the 2nd level submenus. There’s a gap of about 50 px so I can’t reach the second level.
Kind regards, Oliver
February 24, 2015 at 1:01 pm #4151Hi Oliver,
Add this code in custom css area of Appearance>Theme Options>Layout Settings>Custom CSS:
.header .header-inner .nav ul li a{padding:10px !important;}
Regards,
ShriFebruary 24, 2015 at 1:03 pm #4153Thank you, but that didn’t work. Here is a screenshot, maybe we thing of something different:
https://drive.google.com/file/d/0B9jH6XTGiSpWaUFHZFhKaENOdFE/view?usp=sharing
February 24, 2015 at 1:06 pm #4154Yes sorry wrong code.
This is correct code: #site-nav ul li:hover ul li:hover ul{left:83px !important; top:0px !important;}
Regards,
ShriFebruary 24, 2015 at 1:09 pm #4155Great, thank you!
Bye, Oliver
February 26, 2015 at 5:40 pm #4204I was directed to use this thread to find the code for opacity per your email.
#content{background: rgba(0, 0, 0, 0.9) !important; opacity:1!important; }
Does not work 🙁 Nothing changes
also tried this one too which was the RGB equivelent to my color background as its not black.
i used the hex converter to find the 66,66,66 numbers.
#content{background: rgba(66, 66, 66, 0.9) !important; opacity:1!important; }
still nothing
-
AuthorPosts
- You must be logged in to reply to this topic.