WebSite X5Help Center

 
Colin A.
Colin A.
User

Use Space Under Vertical Menu  en

Author: Colin A.
Visited 1696, Followers 2, Shared 46  

Is there a way to place logos in the area under the Vertical Menu, preferably relative to the bottom of the menu?

Posted on the
12 ANSWERS - 2 USEFUL
Incomedia
Samantha M.
Incomedia

Hello Colin,

unfortunately, you can not add the logo to the menu. The program does not let you do this automatically.

The only way you can do this, is by editing the HTML code of your template (preset/custom). You need to enter you HTML code in the head section.

Read more
Posted on the from Samantha M.
Colin A.
Colin A.
User
Author

Can you suggest the code that works, I can't find any.

I tried adding the html in the header but I'm guessing that's not what you mean. Do you mean under the Expert Tab in the General Settings?

Read more
Posted on the from Colin A.
Incomedia
Samantha M.
Incomedia

No not there, if you go in your program files - WebSite X5 v9 - Evolution - Templates - Custom (for example) - open the html document and add the code under the ''</head>''.

I can help you if you hae problems with the program but I can not generate HTML codes for you, I'm sorry, maybe another user can help?Laughing

Read more
Posted on the from Samantha M.
Colin A.
Colin A.
User
Author

OK guys I've cracked it!!!

<div style="position: absolute; TOP:***px; LEFT:***px; z-index: 999;">
<img src="Your Image"> or <p>Your Text</p>
</div>

*** = position in pixels

If you wanted to add text over an image repeat the <div style, using a lower
z-index number for the underneath element, ie. 998 for image and 999
for text.

Basically you can place what you want where you want, text or images, even make a stack.

To add to every page just place the code in the 'General Settings/Expert' tab or if you just want one page, highlight the page in 'Sitemap Creation' and click on the 'Page/Level Properties' button and enter the code in the 'Expert/Custom Code' section and make sure it is 'Before </HEAD> tag' in the dropdown box.

Hope this helps someoneSmile

Read more
Posted on the from Colin A.
Si Robinson
Si Robinson
User

i'm sure it wouldnt take much to add this to the software so we dont have to add code.

but no doubt ICM will come up with a great excuse why they cant.

Read more
Posted on the from Si Robinson
BmT 3000
BmT 3000
User

How about something positive, for a change, Si ????

Read more
Posted on the from BmT 3000
Si Robinson
Si Robinson
User

I'll start being positive when ICM are lol

Read more
Posted on the from Si Robinson
Colin A.
Colin A.
User
Author

I may have been a bit premature. I was using FireFox and, silly me didn't check IE, Safari & Chyrome as I usually do.

I FF it wors fine but in the other three the images is sent well to the left of it's position in FF. Anybody got an idea who this should be?

Read more
Posted on the from Colin A.
Cheeky Man
Cheeky Man
User

Wink

Si have you lost your toys outta your pram again.......... Laughing

www.frankscybercafe.com

Read more
Posted on the from Cheeky Man
Si Robinson
Si Robinson
User

nope just having a very bad day

Read more
Posted on the from Si Robinson
Colin A.
Colin A.
User
Author

I think I've cracked it at last. If you need it try it, and let me know. I've tried it with XP & 7, IE, FF, Chrome & Safari and works fineLaughing

This code goes in the Expert Tab, Head section, of the General Settings.

It takes the pixel location from the centre of the page, so to move the image left you pot the left:-???px (yes that is a minus number); and to move it right you put left:???px (a positive number), nothing else needed under normal conditions.

The z-index:999 ensures that the image sits above any otherobjects on the page, you can stack images by having the highest number on top, and the lowest number will be below that. You can use any number from -999 to 999 so plenty of scope.

Hope this helps some of youCool

Read more
Posted on the from Colin A.
Colin A.
Colin A.
User
Author

The code I posted above seem to have been taken by the forum and made active, here we go, quotes should stop it, but leave out the quote at the beginning and end to use it.

"<div align="center" style="position:relative; height:0px; top:???px; left:???px; z-index:999">
<img src="Image Location (on server to go live, local disk for testing)/File Name">
</div>"

Have funCool

Read more
Posted on the from Colin A.