McKinley Theme – transparent
-
I would like to change the homepage content box to be partly transparent – is that possible on the McKinley Theme? I have the premium edition.
The blog I need help with is: (visible only to logged in users)
-
Hello, this bit of CSS should help you out.
/* Transparent background on home post */ .home .hentry { /* Adjust background opacity */ background: rgba(255, 255, 255, .75); }The .home .hentry selector makes sure the CSS only targets the post on your home page.
The first three numbers in the background rule are the RGB values for white – 255, 255, 255 – the third number, with the decimal, specifies the opacity. You can use values from 0.0 (fully transparent) to 1.0 (fully opaque).
Let us know if this helps.
- The topic ‘McKinley Theme – transparent’ is closed to new replies.