centering site_logo

Temporary forum to obtain support for MODs/Styles while phpbb.com is down
Locked
jmalcodray
Registered User
Posts: 40
Joined: Sun Feb 01, 2009 10:09 pm

centering site_logo

Post by jmalcodray »

Looking for guiadance on how to center the site_logo on a style sheet (Serenity). Not sure what file and where.

I appreciate the help.

Joe
CHDForum.com
Joe Alcodray
Dearborn, Michigan, USA

User avatar
Raimon
Former Team Member
Posts: 67
Joined: Sun Mar 19, 2006 1:21 pm
Contact:

Re: centering site_logo

Post by Raimon »

open stylesheet.css

search:

Code: Select all

#logorow {
	background: #F8F8F8 url(images/bg_logo.gif) top left repeat-x;
	text-align: left;
	padding: 0;
	padding-top: 6px;
	min-height: 70px;
}
replace with:

Code: Select all

#logorow {
	background: #F8F8F8 url(images/bg_logo.gif) top left repeat-x;
	text-align: center;
	padding: 0;
	padding-top: 6px;
	min-height: 70px;
}

Locked