Header site_logo

For support and discussion related to templates, themes, and imagesets in phpBB 3.0.
Suggested Hosts
Locked
Cypriotmatrix
Registered User
Posts: 139
Joined: Sun Mar 21, 2010 3:40 am
Contact:

Header site_logo

Post by Cypriotmatrix »

Just wondering how I can adjust the spacing above my site logo to be equal spacing as it is below the site logo.

Strangely enough, the spacing is the same for both prosilver and Prosilver_se styles, so I presume it has nothing to do with the template files (?).

www.cyprus-forum.net
User avatar
PlanetStyles.net
Former Team Member
Posts: 4809
Joined: Wed Nov 04, 2009 11:16 pm
Location: Way up in the sky close to the stars
Name: Christian
Contact:

Re: Header site_logo

Post by PlanetStyles.net »

Hi :)
Cypriotmatrix wrote:Strangely enough, the spacing is the same for both prosilver and Prosilver_se styles, so I presume it has nothing to do with the template files (?).
That would be because prosilver and prosilver_se both share the majority of CSS. :)

To solve your problem, open: /styles/prosilver/theme/common.css

Find:

Code: Select all

#logo {
	float: left;
	width: auto;
	padding: 10px 13px 0 10px;
}
Replace with:

Code: Select all

#logo {
	float: left;
	width: auto;
	padding: 0 13px 10px 10px;
}
Find:

Code: Select all

h1 {
	/* Forum name */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-right: 200px;
	color: #FFFFFF;
	margin-top: 15px;
	font-weight: bold;
	font-size: 2em;
}
Remove:

Code: Select all

margin-top: 15px;
Let us know if you run into any issues. :)
Cypriotmatrix
Registered User
Posts: 139
Joined: Sun Mar 21, 2010 3:40 am
Contact:

Re: Header site_logo

Post by Cypriotmatrix »

this is the code I have in Common.css:

Code: Select all

h1 {
	/* Forum name */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin-right: 200px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 2em;
}
And I changed:

Code: Select all

    #logo {
       float: left;
       width: auto;
       padding: 10px 13px 0 10px;
    }
To:

Code: Select all

    #logo {
       float: left;
       width: auto;
       padding: 0 13px 10px 10px;
    }
But that has made no difference.
5hocK
Registered User
Posts: 3139
Joined: Wed Nov 23, 2011 7:00 pm
Location: UK

Re: Header site_logo

Post by 5hocK »

Did you refresh the theme or purge the cache afterwards?
Cypriotmatrix
Registered User
Posts: 139
Joined: Sun Mar 21, 2010 3:40 am
Contact:

Re: Header site_logo

Post by Cypriotmatrix »

5hocK wrote:Did you refresh the theme or purge the cache afterwards?
I refreshed theme but I did not purge the chache.

I will try it now. :)
Cypriotmatrix
Registered User
Posts: 139
Joined: Sun Mar 21, 2010 3:40 am
Contact:

Re: Header site_logo

Post by Cypriotmatrix »

5hocK wrote:Did you refresh the theme or purge the cache afterwards?
Well I did that now but no go, unfortunately.
Locked

Return to “[3.0.x] Styles Support & Discussion”