Jump to content

MrMKellow

Members
  • Posts

    3
  • Joined

  • Last visited

About MrMKellow

  • Birthday 10/22/1994

Previous Fields

  • Languages
    HTML, CSS, PHP (learning)

Profile Information

  • Interests
    Web Development, Web Design, Anime, Console gaming, Games development (level design), Tennis

MrMKellow's Achievements

Newbie

Newbie (1/7)

1

Reputation

  1. I don't know much about this, however you can dowload certain players that use CSS without use of javascript required for easy playback. Flash is required. Here is a website with a free and open source player: http://flowplayer.org/
  2. Hi, Dicee. You say you have multiple pages on your site, each I assume being a seperate HTML/PHP document? Simply removing the <iframe> tag from the other pages should suffice. I'm sorry to be of little help, I'm not entirely sure of the specifics of your problem from the inital post.
  3. Hi, Deanno0007. One way would be to use a small amount of inline styling (css) to center your page. Here is a small example: <!DOCTYPE html><html><head><title> Centering page using inline styling </title><style type = "text/css">html,body { margin: 0px; padding: 0px;}.center { width: 800px; padding: 0 auto; margin: 0 auto;}</style></head><body><div class = "center"><div> <p> Content here </p> </div></div></body></html> This example creates a two margins of equal size centering the page. I hope this small example is adequate and helps you with your problem. Note: I'm not entirely sure how you're developing your site but using an extenal style sheet will be a great way to modify your sites positional and design easily. It makes your HTML documents much cleaner.
×
×
  • Create New...