Fórumok

[RESOVLED] Jedi Logo reSize Height.

thumbnail
Eric Brennan, módosítva 16 év-val korábban

[RESOVLED] Jedi Logo reSize Height.

New Member Bejegyzések: 21 Csatlakozás dátuma: 2007.10.29. Legújabb bejegyzések
I have replaced and resized my logo to be about half the height of the Liferay logo. I have also removed the search box. All there is fine.

However there is an invisible clickable box behind the logo that I have not been able to resize. Since my banner is half height, the click area is now extending into my navigation bar.

See it here OxfordBaptist.org

Click and hold down the button while clicking on the logo. You will see the outline of the click box. I need to reduce the click box to match the logo size.
thumbnail
Eric Brennan, módosítva 16 év-val korábban

RE: Jedi Logo reSize Height.

New Member Bejegyzések: 21 Csatlakozás dátuma: 2007.10.29. Legújabb bejegyzések
I found this in viewing the source for the page but have not been able to locate it on any of the css files. I want to set height to smaller. All I can think is somehow the code is getting created dynamically.

}
#banner .logo a {
background: url(/liferay-jedi-theme/images/common/logo.png) no-repeat;
display: block;
font-size: 0;
height: 88px;
text-indent: -9999em;
width: 290px;
}
thumbnail
Shivani Chandna, módosítva 16 év-val korábban

RE: Jedi Logo reSize Height.

Junior Member Bejegyzések: 54 Csatlakozás dátuma: 2007.07.17. Legújabb bejegyzések
hmmm yes .. it is definitely not in the css files..

I checked this one out: and found it in :

/webapps/liferay-jedi-theme/templates/portal_normal.vm



#if ($company_logo != "")
		<style type="text/css">
			#banner .logo {
				padding: 0;
			}

			#banner .logo a {
				background: url($images_folder/common/logo.png) no-repeat;
				display: block;
				font-size: 0;
				height: 88px;
				text-indent: -9999em;
				width: 290px;
			}

			#ie6_png_fix ()
		</style>



hth.
Shivani.
thumbnail
Eric Brennan, módosítva 16 év-val korábban

Resolved: Jedi Logo reSize Height.

New Member Bejegyzések: 21 Csatlakozás dátuma: 2007.10.29. Legújabb bejegyzések
Thanks,

This worked out great