Transparent Side bar?___SOLVED

otografias

Joined: 2011-10-20
Posts: 41
Posted: Thu, 2013-11-28 12:55

Hello everybody!

I´m customizing Wind theme, and next to add a background image, i need to make visible in the background of side bar and album , and if its possible trough the album and image "box".

you can see in:
www.paseapase.com

I tried this code in screen.css

Quote:
#g-content {
background-color: transparent;
padding-left: 20px;
position: center;
width: cover;
}

#g-sidebar {
padding: 0 20px;
width: 220px;
background-color: transparent;
}

but does not work :-(((... Any idea?

thanks!

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Thu, 2013-11-28 14:40

in the css find doc4
and add
background-color: transparent;
or you might have to add it as it is a yui box.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
otografias

Joined: 2011-10-20
Posts: 41
Posted: Thu, 2013-11-28 16:48

Hello Dave, I'm not sure I understood:

Quote:
in the css find doc4

i search doc4 in folder /themes/wind/css/
then i tried in "screen.css" I don't found any refer to doc4...
finally i found a reference to doc4 in page.html.php


<body <?= $theme->body_attributes() ?>>
<?= $theme->page_top() ?>
<div id="doc4" class="yui-t5 g-view">
<background-color: transparent;>
<?= $theme->site_status() ?>
<div id="g-header" class="ui-helper-clearfix">
<div id="g-banner">

but I think it is not the right way...
thanks!

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Thu, 2013-11-28 16:57
Quote:
you might have to add it

So...
Add:

#doc4 {
background: transparent;
}

to the CSS you want to edit.
If that is not the "right" way I will let you or others find that way.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
otografias

Joined: 2011-10-20
Posts: 41
Posted: Thu, 2013-11-28 17:27

As would say my models: Oooolé

works very well. thank you very, very, very much!!!