Jump to content

enimy6

Members
  • Posts

    14
  • Joined

  • Last visited

enimy6's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Thank dsonesuk, I have never used php before so I've been trying it out just now, but I don't understand what I am doing wrong, I want it to show a clickable .jpg file, but whatever I type in the php it won't show anything. Html <div id="rightnav"><?php include 'php/rightnav.php'; ?></div> php <!doctype html><html><head><meta charset="UTF-8"><title>Untitled Document</title></head><body><a href="../articles/banishedpreview.html"><img src="../images/spotlightbanished.jpg" alt="spotlightbanished"></a></body></html>
  2. I don't think iframe will work, and I'm too inexperienced with Javascript at this moment. Thank you anyways
  3. At this current moment, yes. It's a 'spotlight' area, something similar like 'movie/game/joke of the week', or 'staff picks' at this moment I wish to place this on every page, ofcourse I'm not sure how it will be in the future, but this is my current choice.
  4. That's right, but in this case I want to try something out, I made a quick sketch of my website layout, and I want to try out something with that element, so at this point it's not just about the banner, title, nav and footer, it's about a piece of content http://oi39.tinypic.com/33ky93n.jpg
  5. Hello, I've been posting some 'noob' questions on here lately so I want to say sorry about that; but I appreciate all the help! I was wondering about something, right now I have several html pages, and I'm still developing my website. But I ran into a future-problem, right now I have a content area, and a small area on the right where I want to post small updates or videos or something.. BUT right now if I edit the area, I have to go through all the html files and edit the little area.. what if my website ends up having alot of pages and I have to spend houres editing the files just for one little change? Surely there is a solution to this.. Again, I'm not that experienced with html, so if you can please explain Thank you!
  6. I will give it a shot, thank you
  7. Hello! I want to make my navigation bar less boring and lame, I want to create a navigation bar with buttons (not just text with spacing & hyperlinks) I made a quick example of what I want it to look like http://oi41.tinypic.com/29xgier.jpg How do I make this? do I have to make seperate images for each button? and then create an image when the user does: -mouse over -clicked -active link this seems rather 'heavy' and redundant.. Another example of what Im trying to make can be viewed at: www.newground.com I don't want a dropdown menu at this moment; I just want a menu with clickable links Thank you in advance!
  8. I have an image that's 1920x1080 pixels, I wish to set it as a background image for my website; but I don't want to resize it or anything, I want it to 'center' to the content, and regardless of the user's screen size stay to the center. The bigger the screen the more the user will see of the image, the same concept Newgrounds has (http://www.newgrounds.com) on my laptop I only see the content, but my computer has a 1900x1080 resolution so I see more of the background.. I'm having trouble explaining what I want but I hope I'm clear enough EDIT: Also I was wondering how 'strict' is the copyright in web design? I know YouTube has like, a zero tolerance concerning music.. is it a bad idea to use images i found on the internet for my background? I kinda photoshopped it after, but it's till mostly the same image (there are no people showing on it, it's a drawing of a fictional city)
  9. When I preview my website in google chrome using dreamweaver (offline) it all looks how I want it to. But after I upload my site using filezilla it doesn't look like it's supposed to, I'm still using google chrome and I uploaded and replaced all files several times. The border around some elements are gone, some elements float differently, the background-color:white; is gone.. How is this possible? EDIT: nevermind, for some reason it works now..
  10. Thank you so much! this will help alot !
  11. http://www.cracked.com I want to make a header like the website mentioned above. (cracked.com) How do I do that? I'm rather new to this. Thank you in advance
  12. enimy6

    Center page

    Okay, so I've figured out the problem, because of of 'fixed' my entire 'container' gets dragged to the side, (like this: http://oi41.tinypic.com/2lnwx0.jpg) getting rid of 'position:fixed' would get rid of the problem, but I want the left side of the website to 'not-move' and the right side to move when the user scrolls through the content.., how would I do this without using 'fixed'? and with 'center' the webpage I mean, have whitespace on both left and right, the code 'margin-left:auto;' and right, should take care of that
  13. enimy6

    Center page

    My page was centered in the web page, but now it isn't anymore.. this is my code html: <!doctype html><html><head><link href="../css/style.css" rel="stylesheet" type="text/css"/><meta charset="utf-8"><title>Events</title></head><body><div id="page"><div id="logo"><img src="../images/ETlogo.jpg"></div><header><h1> Latest Electric Car News </h1></header><nav><ul><li><a href="home.html">Home</a></li><li><a href="Staff.html">Staff</a></li><li><a href="Subscription.html">Subscription</a></li><li><a href="Events.html" class="current">Events</a></li><li><a href="News.html">News</a></li><li><a href="Sitemap.html">Sitemap</a></li></ul></nav><article><h1>Events</h1></article><footer>Sitemap</footer></div></body></html> CSS: @charset "UTF-8";/* CSS Document */##page{ margin-left:auto; margin-right:auto; width:1024px;}li{ list-style-type:none;}#logo{ width:203px; height:183px; display:inline-block; text-align:center; border-right:solid 1px #999999; position:fixed;}header{ background-color:#FFF; width:100%; width:600px; height:85px; float:left; padding-top:30px; padding-left:20px; margin-left:203px; border-left:solid 1px #999999; }p{ font-size:100%; font-family:Georgia, "Times New Roman", Times, serif; }h1{ font-size:30px; font-family:Georgia, "Times New Roman", Times, serif; color:#B90000}h4{ font-family:Georgia, "Times New Roman", Times, serif; font-size:16px; margin-bottom:auto; color:#B90000;}nav { float:left; width:203px; border-right:solid 1px #999999; height:clear; background-color:#FFF; position:fixed; margin-top:200px; }nav a{ color:#B90000; font-size:18px; text-decoration: none}nav a:active{ font-weight:800; text-align:right;}nav a:visited { } nav a.current:link, a.current:visited { font-weight:900;} article{ padding:10px; width:600px; display:block; float:left; background-color:#FFF; border-top:solid 1px #999999; border-left:solid 1px #999999; margin-left:203px;}form glowing-border { border: 2px solid #dadada; border-radius: 7px;}form glowing-border:focus { outline: none; border-color: #9ecaed; box-shadow: 0 0 10px #9ecaed;}input{ width:400px; margin-bottom:10px;}footer{ clear:both; width:100%; height:30px; border-top:solid 1px #999999; border-radius:5px;} Why won't it position in the center of the page?
  14. I want to make a menu like this website has: http://www.h3ostudio.com/ I have nav a{ text-decoration:none; color:#B90000; font-weight:500; text-align:left; border-bottom:1px solid #099; padding-right:250px; padding-left:25px;} but it just drags every border under every word 250 pixels to the right.. I want them to 'stop' at.. the end of the menu? also, while I'm asking this question, how do I make the border like they have on this website? it's like, black-gray-ish.. how do I style my border like that? or does anyone know where I can find 'proper' styling tutorials for borders? or have they used an image for the border; if so how do I do that? sorry I'm rather new to this, and thank you in advance!
×
×
  • Create New...