Hi
My website contains several pages. All of them have three columns.
But in Opera, the 3rd column in some of the pages has moved to the
left hand of the page.
The address http://www.bomloveven.com/hordaland.html is one
example. The third column content is local news from Norway.
The code - made in Javascript - is copied from NRK
(norwegian broadcasting).
Below I have included the html and css code I consider as neccessary:
Html code - third column
<div id=“hogre”>
(Javascript here)
</div>
#hogre {
width: 11em;
background-color: #FFE4C4;
margin:0em;
padding-top:1em;
padding-left:1em;
padding-bottom: 1em;
}
I also do include some extra css code that may have consequences.
It may not be neccessary, I don’t know.
body {
text-align: center;
background-color: White;
width: 800px;
PADDING-RIGHT: 0px;
PADDING-LEFT: 0px;
PADDING-BOTTOM: 0px;
MARGIN: auto;
PADDING-TOP: 0px;
}
#boks {
text-align: center;
background-color: #FFE4C4;
width: 770px;
overflow: auto;
padding-left: 1em;
padding-right: 1em;
padding-bottom: 0.1em;
padding-top: 0.1em;
text-align: center;
}
I have found that if I delete “width” in “hogre” (third column)
, and substitute Javascript with let’s say the word “Test”, then
“Test” appears where the news was intended to appear.
Is there someone who have a solution?