PDA

View Full Version : How can I link to my header


webasker
01-03-2018, 10:53 AM
How can I link to my header, so when you hit the header image, it has to go back to the front page


I looked and looked, I could not find it

https://vborg.vbsupport.ru/external/2018/01/2.png


my another quastions

how can i change this logo and the scripsons about my homepage..

i cant edit this message

this is a discussion forum powered by vBulletin.To find out about vBulletin, go to http://www.vbulletin.com/

i have do this

AdminCP > Settings > Options > General Settings > Meta Description

i also have do that

go to admincp/Languages & Phrases/Search in Phrases
Search for Text = x_powered_by_vbulletin
Search in ... = Phrase Variable Name Only
click find in the next page click edit to edit the phrase then in the box put {1} then save

but is steel not changed.. i have this problem when i give my web adress from messenger orwhatzapp

CAG CheechDogg
01-03-2018, 09:04 PM
Do this ... look for the following in your navbar template


<vb:if condition="$stylevar['titleimage']"><div><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" alt="{vb:rawphrase x_powered_by_vbulletin, {vb:raw vboptions.bbtitle}}" /></a></div></vb:if>


and replace it with the following:


<vb:if condition="$stylevar['titleimage']"><div><a name="top" href="{vb:link forumhome}" class="logo-image"><img src="{vb:stylevar titleimage}" width="315" height="125" title="YOUR TITTLE HERE" alt="AN ALTERNATE DESCRIPTION HERE IF YOU WANT" /></a></div><vb:else /><div>&nbsp;</div></vb:if>


The width and height change it to whatever your header is ...this is one alternative ...

The other is to change the GLOBAL phrase x_powered_by_vbulletin to what you want .... hope this helps ...