A Flash Developer Resource Site

Search:

Type: Posts; User: sticks464

Page 1 of 11 1 2 3 4

Search: Search took 0.16 seconds.

  1. Replies
    15
    Views
    18,121

    The Flash version detection script is over riding...

    The Flash version detection script is over riding any css to center the movie. The flash version detection script is not needed anyway.

    This will center the movie. I tested by changing the movie...
  2. Replies
    7
    Views
    1,621

    This will center vertically and horizontally....

    This will center vertically and horizontally.
    The html {overflow-y:scroll;} is to keep a vertical scrollbar on the right at all times (just like IE7). It can be removed if not wanted.

    <!DOCTYPE...
  3. Replies
    1
    Views
    635

    Are you talking about the first word Assessment...

    Are you talking about the first word Assessment 1: or the first link?
    Checked in IE7-8 and all other modern browsers and the first word does not change colors on hover.

    If you want the first link...
  4. Replies
    11
    Views
    1,880

    Nothing seems to work with this menu to get a...

    Nothing seems to work with this menu to get a current page style.
    If you are comfortable editing your themes header.php you can have a look at these tutorials on setting up your own dropdown menu to...
  5. Replies
    11
    Views
    1,880

    I just viewed your test site and the dropdown is...

    I just viewed your test site and the dropdown is working.

    You should add some test pages and sub-pages and see if the menu will automatically add them to the menu.
  6. Replies
    11
    Views
    1,880

    Each page would be a main page and not a...

    Each page would be a main page and not a sub-page.

    If you make each page a main page, your current menu would have a class assigned like this.

    <li class="page_item page-item-2...
  7. Replies
    11
    Views
    1,880

    I'm not even sure any of the solutions will work...

    I'm not even sure any of the solutions will work with your menu since it is code as a dropdown menu instead of a full menu.
    You may have to make your menu without using sub-menus which is what I...
  8. Replies
    11
    Views
    1,880

    See this page...

    See this page.

    The body tag currently has an id of top and a class of default for each page. Because the active rule and the current_page_item class will not work in this case, a new body tag must...
  9. Replies
    11
    Views
    1,880

    Add to your styles ul.children...

    Add to your styles

    ul.children {padding-left:0;}

    Adjust the width of ul#menu li a:link, ul#menu li a:visited to move the main page links closer together.
  10. Replies
    5
    Views
    1,046

    Try

    Try

    <input type="swf" src="myImage.swf" value="Submit Form" />
  11. It can possibly be a FF version bug. Since I...

    It can possibly be a FF version bug. Since I upgraded mine has been doing strange things also.
  12. Replies
    7
    Views
    1,167

    Try swfObject...

    Try swfObject. It can be used several ways.

    There's a big difference between tearing down a house and rebuilding than just remodeling it.
    You can become a senior member by the number of post you...
  13. Replies
    7
    Views
    1,167

    Your css is not bad, just needs some grouping....

    Your css is not bad, just needs some grouping.
    you can group all your image links into one rule and the hover rule into one.

    example:

    a.p01, a.p02, a.p03, a.p04. etc.....a.p32 {...
  14. Replies
    7
    Views
    1,167

    I checked with IE7 and FF3.5.2 and all is working.

    I checked with IE7 and FF3.5.2 and all is working.
  15. By breaking down your code, you have too many div...

    By breaking down your code, you have too many div closing tags.
    Here's what you have less most of the content so you can see the extra div closing tags.

    <body>
    <div id="wrapper">
    <div...
  16. Replies
    7
    Views
    1,378

    Try this for the menu. The javascript is for ie6...

    Try this for the menu. The javascript is for ie6 only

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html...
  17. Replies
    3
    Views
    22,198

    Here's one way to center and set height from top....

    Here's one way to center and set height from top. Change the values for top and margin-top of the container

    <style type="text/css">
    /*-----page layout-----*/
    html{height:100%}
    html,body...
  18. Replies
    5
    Views
    1,039

    Some css trickery and a little cleanup should do...

    Some css trickery and a little cleanup should do it.


    * {/*set browser defaults to zero*/
    margin:0;
    padding:0;
    }

    img {
    border:0;
  19. Replies
    5
    Views
    1,039

    You got some code for us to look at?

    You got some code for us to look at?
  20. Replies
    5
    Views
    1,094

    Using floats and a span in a paragraph will not...

    Using floats and a span in a paragraph will not let you keep the text on the same baseline. However it can be done using multiple containers with padding and margins.

    html example:

    <div...
  21. Replies
    3
    Views
    1,284

    What I use for centering which works great for a...

    What I use for centering which works great for a flash site is using two container divs's. This will center both horizontally and vertically.

    <div id="container">
    <div id="content">
    swf goes...
  22. All browsers have margin and padding defaults...

    All browsers have margin and padding defaults built in and they should be removed for browsers to render the code the same. Put the following in the head section of your page and remove any coding...
  23. Replies
    1
    Views
    557

    You should do one image and use it as a...

    You should do one image and use it as a background. I did a short mockup with a border around the image. The image you made does not have equal sides so it is hard to center. Cut out the part...
  24. Replies
    5
    Views
    813

    If you use swfObject javascript to code for...

    If you use swfObject javascript to code for <object> it will fix this problem. Also use wmode - transparent with whichever code you use.
  25. Without an actual swf I can't tell if this works...

    Without an actual swf I can't tell if this works or not, but give it a try

    div#container {
    min-height:600px;
    height: auto !important;
    height:100%;
    min-width:800px;
    width: auto !important;...
Results 1 to 25 of 267
Page 1 of 11 1 2 3 4




Click Here to Expand Forum to Full Width

HTML5 Development Center