Results 1 to 10 of 10

Thread: ddcolortabs position Problem with Firefox

  1. #1
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default ddcolortabs position Problem with Firefox

    I'm use ddcolortabs with Any Link Drop Menu. In IE work perfectly but in Firefox the position not is correctly. I use FlashMovie in Background.

    My site *Open in IE and Firefox to see:

    http://www.sulfiltro.com.br

    Code of ddcolortabs :

    Code:
    <style type="text/css">
    
    #ddcolortabs{
    margin-left: 0px;
    float:right;
    padding: 123 5 0 0;
    background: transparent;
    voice-family: "\"}\"";
    voice-family: inherit;
    }
    
    #ddcolortabs ul{
    margin:0;
    padding:0;
    list-style:none;
    }
    
    #ddcolortabs li{
    display:inline;
    margin:0 2px 0 0;
    padding:0;
    }
    
    
    #ddcolortabs a{
    float:left;
    color: white;
    background: #98B8D1 url('images/color_tabs_left.gif') no-repeat left top;
    font: normal 11px Arial, Verdana, sans-serif;
    letter-spacing: 0px; margin-left:0; margin-right:2px; margin-top:0; margin-bottom:0; padding-left:3px; padding-right:0; padding-top:0; padding-bottom:1px
    }
    
    #ddcolortabs a span{
    float:left;
    display:block;
    background: url('images/color_tabs_right.gif') no-repeat right top;
    padding-left:6px; padding-right:9px; padding-top:4px; padding-bottom:2px
    }
    
    #ddcolortabs a span{
    float:none;
    color:#FFFFFF
    }
    
    
    #ddcolortabs a:hover{
    background-color: #EEF1F6;
    color:#000000
    }
    
    #ddcolortabs a:hover span{
    background-color: #EEF1F6;
    color:#000000
    }
    
    #ddcolortabs #current a, #ddcolortabs #current span{ /*currently selected tab*/
    background-color: #EEF1F6;
    }
    
    #ddcolortabsline{
    clear: both;
    padding: 0;
    width: 100%;
    height: 8px;
    line-height: 8px;
    background: #98B8D1;
    border-top: 1px solid #fff; /*Remove this to remove border between bar and tabs*/
    }
    
    </style>
    To Flash :

    Code:
    // docwrite.js
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="725" height="156" id="topo" align="middle" border="0"><param name="allowScriptAccess" value="sameDomain"/><param name="movie" value="Flash/TOPO.swf"/><param name="quality" value="High"/><param name="wmode" value="transparent"/><param name="bgcolor" value="#ffffff"/><embed src="flash/topo.swf" quality="High" wmode="transparent" bgcolor="#ffffff" width="725" height="156" name="topo" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"/></object>');
    And call in the page :

    Code:
    <script src="docwrite.js"></script>
    What is problem ?

    Help me please.

    thx,

    machinna

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Can't view the page, it is password protected.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. #3
    Join Date
    Apr 2006
    Posts
    429
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ¿qué? he he
    its not password protected
    Please don't mind me. I am just posting a lot of nonsense.

  4. #4
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Sorry... Host Problem.
    But now its ok

  5. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Code:
    #menu{
    	position:absolute;	
    	float:right;
    	right:10px;
    	top:0;
    	text-align:right;
    	margin-left:12px;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  6. #6
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Very thx jscheuer
    You are the best

    But other problem with Firefox :

    I have one Div :

    Code:
    #container{
    	width:726px;	
    	background-image:  url("../images/back_container.jpg");
    	background-repeat: repeat-y;
    	margin:20px auto 20px auto;
    }
    In IE its ok but in Firefox dont complet the space.

    Sorry for my English

    My page :

    http://www.sulfiltro.com.br/


    Other:

    I have sub-page :

    http://www.sulfiltro.com.br/filtros.asp

    In full Page Links dont open in Firefox:

    Go to Produtos - Filtros

    http://www.sulfiltro.com.br/

    Very Thx
    Last edited by machinna; 07-20-2006 at 12:22 PM.

  7. #7
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    This seems to take care of it in FF (additions/changes red):

    Code:
    #container {
    	width:724px;	
    	height:450px;
    	background-image:  url("../images/back_container.jpg");
    	background-repeat: repeat-y;
    	margin:20px auto 20px auto;
    }
    If this causes a problem in IE, you can add below it:

    Code:
    * html #container {
    width:726px;
    height:auto;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  8. #8
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    More one problem solved

    Last problem :

    Quote Originally Posted by machinna
    Very thx jscheuer
    You are the best

    Other:

    I have sub-page :

    http://www.sulfiltro.com.br/filtros.asp

    In full Page Links dont open in Firefox:

    Go to Produtos - Filtros

    http://www.sulfiltro.com.br/

    Very Thx

  9. #9
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Add this style:

    Code:
    iframe {
    position:relative;
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  10. #10
    Join Date
    May 2006
    Posts
    16
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Thumbs up

    Very Thx jscheuer1 !!!

    My Page its 100%

    Later i'm back with more pages and more problems to your solutions

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •