Hello, im having troble with IES

flopi

New Member
for some reason ies is giving me trobles with the css,
look at the site http://israeltopsites.com
with ies and you will look the bottom table is 100% width
and i want it to be as the table on top.
what is the css command? ive tried figuring it out with no success
 

cajkan

Active Member
I cannot understand what you mean

but theres lots of bad style in main page looks like you messed up the .css
 

flopi

New Member
yeah it does, i switched it to hebrew, is there a possibilty the table wont get out of border wrapper 950px?
the secound table is out of limits, in internet explorer, thats my only problem
 

Basti

Administrator
Staff member
Iam not getting the same errors with my IE as yours but some other i think, might be related though.

in wrapper.html find
Code:
<div id="content">
below that you have
Code:
    <div style="align"<font color="#FFFFFF">
 
סופרים הצבעות עד ה10 בכל חודש <a href="http://israeltopsites.com/?a=page&id=Winners">
פרסי המנצחים </a>
 
 
(Ctrl-D)  להוסיף אותנו למועדפים לחצו  </b></font>
    <div class="cb"> </div>
But it needs to be
Code:
<div class="cb"> </div>
 
    <div><font color="#FFFFFF">
 
סופרים הצבעות עד ה10 בכל חודש <a href="http://israeltopsites.com/?a=page&id=Winners">
פרסי המנצחים </a>
 
 
(Ctrl-D)  להוסיף אותנו למועדפים לחצו </font></div>
Note, you had a opened div tag
- <div style="align"
--- style="align" is invalid
--- div opening tag missed > above
- you tried to make a div, but div was not closed at the end </div>
- you had a closing bold tag, but never opened one


Then you have your ad banner above the footer
Code:
<!--begin The Banner Exchange code --><iframe src="http://www.thebannerexchange.com/display/15037/1//" frameborder="0" vspace="0" hspace="0" width="468" height="60" marginwidth="0" marginheight="0" scrolling="no"></iframe><!-- end The Banner Exchange code -->
It is missplaced there.
It should either use the ad plugin ( in admin ) and add the banner code to zone C Banners
or place it manually above
Code:
<div class="pagination"></div>
Fix these issues at first, iam positive it fixes most of your problems but we will see. Once done we can continue if needed





Another issue. In wrapper.html you removed <li> tags from the rankings method menu.
find
Code:
<ul class="category_menu">
The third link from that needs to be like this ( also note the pv_hide template tag, its needed )
Code:
<li{$pv_hide}><a href="{$list_url}/{$url_helper_method}pv{$cat_sort}{$url_tail}">{$lng->rank_pageviews} {$method_views}</a></li>
 

flopi

New Member
DAMN! THATS GOOD:)Works perfect in my eyes.
Thank you ! love your support forum. thinking of becomming an affilate!
 
Top