Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8569331
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T18:18:37+00:00 2026-06-11T18:18:37+00:00

I have a script written up that when a button is pressed, the formatdialog

  • 0

I have a script written up that when a button is pressed, the formatdialog div gets resized. The problem is that I can’t figure out why my javascript code does not work. I am able to resize the width and height, but for whatever reason, the top and left can’t be adjusted.

It doesn’t make sense to me what could be causing a problem. Firebug doesn’t give me any errors. The javascript just resizes the width and height and ignores the top and left attributes. I am guessing that the css properties are causing a problem, I just don’t know what.

css:

#formatdialog {
            display:none;
            left:25%;
            top:25%;
            width:400px;
            height:200px;
            position:absolute;
            z-index:100;
            background:white;
            padding:2px;
            font:10pt tahoma;
            border:1px solid gray
        }

Javascript:

function FormatDialogResize(){
        var elem = document.getElementById('FormatDialog');
        elem.style.top = "10%";
        elem.style.left = "10%";            
        elem.style.width = "600px";
        elem.style.height = "500px";
    }

I also tried:

function FormatDialogResize(){
        var elem = document.getElementById('FormatDialog');
        elem.style.top = 10+"%";
        elem.style.left = 10+"%";           
        elem.style.width = "600px";
        elem.style.height = "500px";
    }

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T18:18:38+00:00Added an answer on June 11, 2026 at 6:18 pm

    Why is you class name missing the pascal casing for the element ID in the classId

    #formatdialog {
    
    FormatDialog
    

    You have a typo.

    The element id is formatdialog but you are trying to call FormatDialog

    var elem = document.getElementById('FormatDialog');
    

    Your code should be like this:

    <div id="formatdialog">
    
    </div> 
    
    var elem = document.getElementById('formatdialog');
    elem.style.top = "10%";
    elem.style.left = "10%";
    elem.style.width = "600px";
    elem.style.height = "500px";
    
    #formatdialog 
    {
        left:25%;
        top:25%;
        width:400px;
        height:200px;
        position:absolute;
        z-index:100;
        padding:2px;
        font:10pt tahoma;
        border:1px solid gray;
        background-color:orange;
    }​
    

    If you want to use Pascal casing make sure it is the same in elementId and class

    Check this Fiddle

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a mechanize script written in python that fills out a web form
I have a Popup button written in JavaScript. When user clicks that button, it
Here's an interesting problem. I have an ETL script written in c# that I
I have written a script that fires a jQuery POST to retrieve data from
So I have a strange question. I have written a script that re-formats data
The script I have written outputs all lines from the file 2 that starts
I have a written a script in PHP that reads from data from a
I have written a Python script that will generate a series of graphs and
I have written a data munging script that is very CPU intensive. It has
I have now written a number of different functions in Google Apps Script that

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.