-
1. Re: CSS Styling
Nystromium Jul 19, 2013 10:19 AM (in response to GESYMSB)Please post your HTML so experts can give you a proper response.
-
2. Re: CSS Styling
Nancy O. Jul 19, 2013 10:21 AM (in response to GESYMSB)Remove code in RED
.GEMENU {
width: 100%;
overflow: hidden;
border-bottom: 0;
position: absolute;
left: 34px;
top: 218px;
font-family: Arial, Helvetica, sans-serif;
font-style: normal;
line-height: normal;
font-weight: bold;
}
Nancy O.
-
3. Re: CSS Styling
GESYMSB Jul 24, 2013 6:11 AM (in response to Nancy O.)I will try that, 100000000 of thanks again !
BTW do you know where I can go to post questions about Javascript ?
This is what I would like to post, mabe you can help me, most example just
print ( write to the page ) noticed I want a variable to display between 2
strings or words.....
From WC3 I found this:
JavaScript getFullYear() Method Return the year:
var d = new Date(); var n = d.getFullYear();
The result of n will be: 2013
Can I do this?: (new Date()).getFullYear()
Also how I can use the ID tag, for example:
Today is year ( variable that shows the year here ) take care.
Thanks
-
4. Re: CSS Styling
Nancy O. Jul 24, 2013 8:16 AM (in response to GESYMSB)<p>Current year
<script type="text/javascript">
var theDate=new Date()
document.write(theDate.getFullYear())
</script></p>
Nancy O.
-
5. Re: CSS Styling
GESYMSB Jul 27, 2013 4:24 PM (in response to Nancy O.)Going back to the CSS Boxes, Nancy, just want to let you know that
I did experimenting with "Floats" instead "absolute" positioning andeverything come out GREAT on all 3 Browers I had for testing
( Chrome, IE and Firefox )On your post above, document.write(theDate.getFullYear())
will display the variable, but I read some place
some where, you can pass that value do a div box
I try a couple of times and dint work, do you know what I'm
talking about? The return from theDate.getFullYear()
to be displayed inside div box, I think you use the div ID....
-
6. Re: CSS Styling
Nancy O. Jul 27, 2013 4:34 PM (in response to GESYMSB)<div id="foo">
<p>Current year
<script type="text/javascript">
var theDate=new Date()
document.write(theDate.getFullYear())
</script></p>
</div>
Nancy O.
-




