Foren

theme logo problem

biswajit sarkar, geändert vor 12 Jahren.

theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
I created a custom theme.
everyrhing working perfect except the logo....

I attach the logo from "Display Settings" but the logo still not appear in my theme.
I dnt find any thing wrong in my code .... anyone know why this happen..

for logo part my code is following

<h1 class="company-title">
<a class="logo" href="$company_url" title="#language("go-to") $company_name">
<span>$company_name</span>
</a>
</h1>
thumbnail
Ravi Kumar Gupta, geändert vor 12 Jahren.

RE: theme logo problem

Liferay Legend Beiträge: 1302 Beitrittsdatum: 24.06.09 Neueste Beiträge
Can you please check the logs for errors, if any? Also, are you able to see the updated logo in Display settings.?
biswajit sarkar, geändert vor 12 Jahren.

RE: theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
there is no error in log......
and yes Im able to the updated logo in display settings
thumbnail
Ravi Kumar Gupta, geändert vor 12 Jahren.

RE: theme logo problem

Liferay Legend Beiträge: 1302 Beitrittsdatum: 24.06.09 Neueste Beiträge
hmm.. are you working on LR6.0.x? Can you check with firebug for any missing resource in "net". It should appear unless css has some fault.

Check for this in firebug, something like should be in css

#heading .logo {
    background: url("/image/company_logo?img_id=0&amp;t=1330594533550") no-repeat scroll 0 0 transparent;
    display: block;
    font-size: 0;
    height: 76px;
    text-indent: -9999em;
    width: 209px;
}


One clarification though.. are you able to see old logo or no logo at all.. ??
biswajit sarkar, geändert vor 12 Jahren.

RE: theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
Ravi Kumar Gupta:
hmm.. are you working on LR6.0.x? Can you check with firebug for any missing resource in "net". It should appear unless css has some fault.

Check for this in firebug, something like should be in css

#heading .logo {
    background: url("/image/company_logo?img_id=0&amp;t=1330594533550") no-repeat scroll 0 0 transparent;
    display: block;
    font-size: 0;
    height: 76px;
    text-indent: -9999em;
    width: 209px;
}


One clarification though.. are you able to see old logo or no logo at all.. ??



in display settings I able to see the logo which i save but in home page only link is appear
thumbnail
Ravi Kumar Gupta, geändert vor 12 Jahren.

RE: theme logo problem

Liferay Legend Beiträge: 1302 Beitrittsdatum: 24.06.09 Neueste Beiträge
hmm.. which link.. and what about css, did you check that?
biswajit sarkar, geändert vor 12 Jahren.

RE: theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
Ravi Kumar Gupta:
hmm.. which link.. and what about css, did you check that?



I check the css..... it not shows in firebug...and the logo still not appear
biswajit sarkar, geändert vor 12 Jahren.

RE: theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
If I want to write that css "#heading .logo" in "custom.css"....how can write this class...anyone plz guide
thumbnail
Ravi Kumar Gupta, geändert vor 12 Jahren.

RE: theme logo problem

Liferay Legend Beiträge: 1302 Beitrittsdatum: 24.06.09 Neueste Beiträge
That is by default in css files in theme/css folder. If you want to put that, put in custom.css file. There should be a _diff folder in your custom theme. Put custom.css there in css folder.

For more search this site for themes development. If you still facing a problem after that.. let us know.

this should help you.. http://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/creating-liferay-them-7
biswajit sarkar, geändert vor 12 Jahren.

RE: theme logo problem

Regular Member Beiträge: 166 Beitrittsdatum: 17.10.11 Neueste Beiträge
Ravi Kumar Gupta:
That is by default in css files in theme/css folder. If you want to put that, put in custom.css file. There should be a _diff folder in your custom theme. Put custom.css there in css folder.

For more search this site for themes development. If you still facing a problem after that.. let us know.

this should help you.. http://www.liferay.com/documentation/liferay-portal/6.1/development/-/ai/creating-liferay-them-7



thanks for your support...
I solve the problem...
here is my code...i add the code (red)
<h1 class="company-title">
<a class="logo" href="$company_url" title="#language("go-to") $company_name"><img alt="" src="$company_logo">
<!--<span>$company_name</span>-->
</img>
</a>

</h1>
Bradley Wood, geändert vor 12 Jahren.

RE: theme logo problem

thumbnail
Ravi Kumar Gupta, geändert vor 12 Jahren.

RE: theme logo problem

Liferay Legend Beiträge: 1302 Beitrittsdatum: 24.06.09 Neueste Beiträge
hmm.. Thanks Bradley for the note.. I will take care of this in future.. emoticon
thumbnail
Ádám T. Nagy, geändert vor 10 Jahren.

RE: theme logo problem

New Member Beiträge: 6 Beitrittsdatum: 01.06.12 Neueste Beiträge
Hi,

I know it is a bit old thread, I just wanted to add something for the records:

To make the theme force to resize a logo image you can use:

#heading .site-title .logo.default-logo img {
    height: 32px;
    width: 100px;
    /*display: none;*/
}


Thank you for the tips by the way,
Adam