I use this code:
http://support.virtualforums.co.uk/board/database/action/vie w_topic/topic/3401
To try and put my menu in my banner cause I'm having a bit of difficulty getting my menu done properly and this looks to be the easiest way to do it.
As a result though, even if i put 1000 into the spot to move my menu around, the banner still results in being on 15pixels high, I've got the banner height set at 140 which is the height of the banner.
It's annoying me >_>. Halp someone![]()
Have you tried the CSS alternative that DregondRahl posted in the same thread?![]()
Yea, apart from the fact that it just showed up as plain text from there... Clearly was doing something wrong lol.
Ahh, I see that Dreggie didn't see the need to include the tags.![]()
Give this a try:
Code:
- <style type="text/css">
- <!--
- #welcome_table .menu font {
- position: absolute;
- top: 0;
- left: 100px;
- }
- //-->
- </style>
ty. fixed that. You might want to post that in the thread. To use the CSS one![]()
Double Post:
I have another issue. Using the CSS code, I put it in px and because of that it screwed up using different resolutions.
However, I changed it to %s, causing a HUGE problem. In FF, it's how I want it - then I open up a tab and it moves, view it in IE and the same problem occurs, though, because it has a different window size to FF, it's off to begin with!
Anyway to fix this?
ty. fixed that. You might want to post that in the thread. To use the CSS one![]()
I thought you knew how to code cssand ya didn't even add the tags
![]()
Not CSS![]()
HTML and PHP (learning MySQL at the moment, stupid thing), though, I must say. Coding for a forum is very different. I've scavenged around looking for how it was done with the skin, and can't find squat for it - probably cause it's mainly done in JS, which I can't even begin to comprehend lol.
Not CSS![]()
HTML and PHP (learning MySQL at the moment, stupid thing), though, I must say. Coding for a forum is very different. I've scavenged around looking for how it was done with the skin, and can't find squat for it - probably cause it's mainly done in JS, which I can't even begin to comprehend lol.
The reason for the error is because it's position is being set at absolute. Give this a try instead:
Code:
- <style type="text/css">
- <!--
- #welcome_table .menu font {
- position: relative;
- top: -50px;
- left: 0px;
- }
- //-->
- </style>
This will position the menu buttons relative to where the original cell is, hopefully fixing the resolution error.![]()
Kind of worked, still slightly off in IE - but, I should be able to fix it.