Hi I made a few minor (I think) modifications to the original layout through custom-style.css:
- got rid of the right and left shadows
- provided custom paths (in _custom folder) for the logo (both top and brand) and header images.

And suddenly the bottom logo and the site name (which used to show after Copyright) have dissapeared. Here's my custom-style.css code:

/* Added to remove both left and right shadows
 * 
 */
 #top_bg {
	background: transparent url(fill_top.png) 0 100% repeat-x;
}
#top_left {
	background: none;
}
#top_right {
	background: none;
}
#body_left {
	background: none;
}
#body_right {
	background: none;
	padding: 0 25px;

/* 
 * Erase the lines below to get rid of the image in the right sidebar and the brand image.
 */

#wrapper {
	background: transparent url(../images/all/_sidebarimg.png) 99% 99% no-repeat;
}

#brand {
/* 
 * changed the original line below to point to custom brand image in _custom folder
	background: url(../images/all/_brand.png) 50% 30% no-repeat;
 */
	background: url(logo_agnu_brand.png) 50% 30% no-repeat;
	position: relative;
	margin: 5px auto 0;
	width: 250px;
	height: 50px;
}

Also, the URL to my site is http://agnu.ibaca.net

You probably will see that I am just starting with css, is there anything I am doing wrong?

Thanks

Comments

castawaybcn’s picture

Title: Brand logo and Site Name dissapearing at bottom with custom-style.css » Site Name dissapearing at bottom with custom-style.css

brand logo is back, I just realized there was a "}" missing (shame on me), sorry for bothering you.
however, the site name did not come back...

castawaybcn’s picture

Finally I found out what it was: site name was not enabled in the theme settings.
I just did not know that if this is not set the $site_name variable is not processed. Is there any workaround to fix this?

castawaybcn’s picture

Title: Site Name dissapearing at bottom with custom-style.css » Site Name dissapearing at bottom when disabled in theme configuration
castawaybcn’s picture

Status: Active » Closed (fixed)

edited page.tpl.php and fixed it, Sorry again for bothering you with such silly questions.