-
AuthorPosts
-
April 7, 2015 at 5:00 am #243709
How can i do this?!
April 7, 2015 at 6:15 am #243755Hi There,
Thanks for writing in!
Try adding following CSS under Appearance > Customize > Custom > CSS:#x-content-band-1 { background-color: transparent; }
You can replace the number ‘1’ by your Content Band’s ID.
Hope it helps.April 7, 2015 at 12:38 pm #244031This reply has been marked as private.April 7, 2015 at 2:28 pm #244117Hi there,
Thanks for updating the thread! To get a black background that has transparency you need to use either the opacity rule or use an rgb color + alpha which is rgba.
Opacity Example:
#x-content-band-1 { background-color: #000000!important; opacity: 0.5; }
rgba example:
#x-content-band-1 { background-color: rgba(0,0,0,0.5)!important; }
Note: the !important attribute isn’t always necessary, I just included it so if there are any conflicts the new CSS rule will overwrite it.
To get the Content Band #, you will need to inspect the code. select the content band you wish to ad the background to, then right click and select inspect element. You will find divs with ids x-content-band-#.
Regarding the map in the footer, you can add a text widget in the footer widget areas and use the [map] or [google_map] Shortcode.
http://theme.co/x/demo/integrity/1/shortcodes/map/
https://theme.co/x/member/kb/shortcode-walkthrough-map/
Hope this helps – thanks!
April 8, 2015 at 5:55 am #244552Thank you very much! It works 🙂
Can you please help me also to setup the navbar transparency?
regards
April 8, 2015 at 6:45 am #244593Hi There,
Try adding following CSS under Appearance > Customize > Custom > CSS:.x-navbar { background-color: transparent; }
Hope it helps.
April 8, 2015 at 8:19 am #244664mmm i’m sorry but didn’t work..
April 8, 2015 at 8:45 am #244694Hi There,
Could you please provide us with your website URL so we can take a closer look?
Many thanks.April 8, 2015 at 9:26 am #244730This reply has been marked as private.April 8, 2015 at 10:11 am #244770Hi There,
Try adding the !important; after CSS code:.x-navbar { background-color: transparent !important; }
Hope it helps.
April 8, 2015 at 3:49 pm #245023if I add !important the navbar is really transparent without black :O
April 8, 2015 at 8:22 pm #245178Hello There,
If you want a transparent black background for the navbar please edit the following code in your Customizer via Appearance > Customize > Custom > CSS:
From this
.x-navbar { background-color: transparent !important; }
To this
.x-navbar { background-color: rgba(0,0,0,.6) !important; }
* adjust the .6 value to your preferred black transparency. Must be less than 1
Hope this helps.
April 9, 2015 at 9:42 am #245570Perfect, it works!
Last thing you can help me please to understand why the logo image I inserted into the footer doesn’t appear?
It is the same of the logo in the navbar.. I really don’t understand why…
Thank you
April 9, 2015 at 1:24 pm #245707Hello There,
Thanks for writing in.
Unfortuantly your HTML syntax for image source is not correct. Kindly see the screenshot http://prntscr.com/6rovxp.
To fix that kindly replace the following code:
<img src="”http://nextparty.it/wp-content/uploads/2015/04/logo-Q21bianco-01-2.png”">
with
<img src="http://nextparty.it/wp-content/uploads/2015/04/logo-Q21bianco-01-2.png">
Hope that helps.
Thanks.
April 9, 2015 at 1:59 pm #245727Wow thank you so much! It work!!
Trust me, there wasn’t the wrong code in the footer widget, how it is possible?
-
AuthorPosts