The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Homepage design code

4 posters

Go down

In progress Homepage design code

Post by yumm Sun Jan 13, 2019 11:02 am

Hello everyone! Hello

That problem solved for me but I see another problem about this code... Crying or Very sad

My solved problem link is here: https://help.forumotion.com/t156799-homepage-design-code#1084046

But when I use that code, it changed quality of my header image... Sad What can I do?
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by Guest Sun Jan 13, 2019 11:29 am

I cant see any image in your header. Looking at the code, it seems like it should be this image:https://i.hizliresim.com/v6Z3rA.png
Problem is that image isn't loading.
avatar
Guest
Guest


Back to top Go down

In progress Re: Homepage design code

Post by yumm Sun Jan 13, 2019 12:19 pm

Menim wrote:I cant see any image in your header. Looking at the code, it seems like it should be this image:https://i.hizliresim.com/v6Z3rA.png
Problem is that image isn't loading.

There is no problem for me, maybe this uploading site blocked for your country... Smile

Photo is here

Homepage design code Newyea10

And the site header is look like this...

Homepage design code Screen19
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by skouliki Sun Jan 13, 2019 1:08 pm

Menim wrote:I cant see any image in your header. Looking at the code, it seems like it should be this image:https://i.hizliresim.com/v6Z3rA.png
Problem is that image isn't loading.
same...cant see any image


Homepage design code Screen46

Homepage design code Screen47

can you upload the image using the servimg we all have in our forums and upload it again to your site please
cause this i.hizliresim.com is forbidden for us
skouliki
skouliki
Manager
Manager

Female Posts : 15161
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Homepage design code

Post by yumm Sun Jan 13, 2019 1:22 pm

skouliki wrote:
Menim wrote:I cant see any image in your header. Looking at the code, it seems like it should be this image:https://i.hizliresim.com/v6Z3rA.png
Problem is that image isn't loading.
same...cant see any image


Homepage design code Screen46

Homepage design code Screen47

can you upload the image using the servimg we all have in our forums and upload it again to your site please
cause this i.hizliresim.com is forbidden for us

Right now? I changed with servimg code... I think hizliresim blocked another countries. :/
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by skouliki Sun Jan 13, 2019 2:30 pm

yes its ok
so try this and adjust the height as you want

Code:

.headerbar {
height:600px;
}


Last edited by skouliki on Sun Jan 13, 2019 2:46 pm; edited 1 time in total
skouliki
skouliki
Manager
Manager

Female Posts : 15161
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Homepage design code

Post by Guest Sun Jan 13, 2019 2:36 pm

The problem is that the image is originally 1023*283. In your header, it is resized to 1146*350, basically it is bigger in the header, which is why it looks less detailed. There are a few possible solutions:
1.Remake the image(in Photoshop or other programs) so that it is 1146.65*350 by default
2.Add this CSS code which will make the image 1023*283 in your header:
Code:
.headerbar{
background-size:contain !important;
}
As you can see this code leaves some black space at the top and bottom of the image. That can be removed if you want.

@skouliki, you forgot the dot before the class name.
avatar
Guest
Guest


Back to top Go down

In progress Re: Homepage design code

Post by skouliki Sun Jan 13, 2019 2:47 pm

thanks yes you are right :rose:
skouliki
skouliki
Manager
Manager

Female Posts : 15161
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Homepage design code

Post by yumm Sun Jan 13, 2019 5:02 pm

Oh thank you so much... Angel Angel

And how can I add the homepage link to header? ouou
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by Guest Sun Jan 13, 2019 5:19 pm

Isn't the Anasayfa link the one you're talking about?
avatar
Guest
Guest


Back to top Go down

In progress Re: Homepage design code

Post by yumm Sun Jan 13, 2019 5:20 pm

Menim wrote:Isn't the Anasayfa link the one you're talking about?

Oh, yes! ^^
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by skouliki Mon Jan 14, 2019 8:28 am

you have it already

Homepage design code Scree702
skouliki
skouliki
Manager
Manager

Female Posts : 15161
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Homepage design code

Post by yumm Mon Jan 14, 2019 11:24 am

skouliki wrote:you have it already

Homepage design code Scree702

I know it already. Laughing But my question is:

yumm wrote:Oh thank you so much... Angel Angel

And how can I add the homepage link to header? ouou

So I want to go ''Anasayfa'' when I click to header image... Smile
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by TheCrow Mon Jan 14, 2019 4:45 pm

Hello @yumm,

For that you have to edit the overall_header template. To do that go: Admin Panel > Display > Templates: General and edit the template with name overall_header.

Find:
Code:
<a href="{U_INDEX}" id="logo" title="{L_INDEX}"><img src="{LOGO}" alt="{L_INDEX}" /></a>
and replace it with:
Code:
<a href="/" id="logo" title="{L_INDEX}"><img src="{LOGO}" alt="{L_INDEX}" /></a>

That should redirect you to the main page of the forum. (the "Anasayfa" page)

Regards.


Homepage design code Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6920
Reputation : 795
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

In progress Re: Homepage design code

Post by yumm Mon Jan 14, 2019 6:16 pm

TheCrow wrote:Hello @yumm,

For that you have to edit the overall_header template. To do that go: Admin Panel > Display > Templates: General and edit the template with name overall_header.

Find:
Code:
<a href="{U_INDEX}" id="logo" title="{L_INDEX}"><img src="{LOGO}" alt="{L_INDEX}" /></a>
and replace it with:
Code:
<a href="/" id="logo" title="{L_INDEX}"><img src="{LOGO}" alt="{L_INDEX}" /></a>

That should redirect you to the main page of the forum. (the "Anasayfa" page)

Regards.

Did'nt work... :/
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by skouliki Mon Jan 14, 2019 6:56 pm

did you publish your template after saving it?
skouliki
skouliki
Manager
Manager

Female Posts : 15161
Reputation : 1696
Language : English,Greek
Location : Greece

http://iconskouliki.forumgreek.com

Back to top Go down

In progress Re: Homepage design code

Post by yumm Mon Jan 14, 2019 7:17 pm

skouliki wrote:did you publish your template after saving it?

Yes, I did it... Shocked
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by SLGray Mon Jan 14, 2019 8:08 pm

Are you using AwesomeBB?  If yes, the header (banner/logo) is not clickable, but the one in the toolbar is.


Homepage design code Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Homepage design code

Post by yumm Mon Jan 14, 2019 8:24 pm

SLGray wrote:Are you using AwesomeBB?  If yes, the header (banner/logo) is not clickable, but the one in the toolbar is.

No, I'm using ModernBB, And I use background header image, this is not logo. Smile
yumm
yumm
Forumember

Female Posts : 79
Reputation : 3
Language : Turkish / English

http://www.superjuniorturkey.com/

Back to top Go down

In progress Re: Homepage design code

Post by SLGray Mon Jan 14, 2019 8:32 pm

Is the image covering the forum's title and description?


Homepage design code Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51503
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Homepage design code

Post by Guest Mon Jan 14, 2019 8:38 pm

Hello,

Please post your overall_header template.
avatar
Guest
Guest


Back to top Go down

In progress Re: Homepage design code

Post by TheCrow Tue Jan 15, 2019 8:55 am

Hello,

What are you expecting to happen with this? You said, when you click your logo to take you to the same place as the Anasayfa page. If you don't use any logo this will not be visible and therefore you cannot click the background and that to take you to the Anasayfa page. The code provided above worked just fine:
Homepage design code Test10

Please explain in details what you want to do and if you can provide pictures or screenshots it would be great.

Regards.


Homepage design code Thecro10
Forum of the Forums

Forumotion Rules | Tips & Tricks |
FAQ | Did you forget your password?



*** The Support Forum will never ask you for your email or password, so please do not post them anywhere! ***
No support via PM!
TheCrow
TheCrow
Manager
Manager

Male Posts : 6920
Reputation : 795
Language : Greek, English

https://forumote.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum