|  | 
11-03-2012, 10:21 AM
| | | | Creating a website So I spent over a month researching and learning how to create a website using Adobe Dreamweaver. I kept experimenting and going to bed at 3am or 4am in the morning and this is what i have to show for it: www.popculturexperiment.com. What do you guys think of it?
Do any of you know how to create a site? I am having problems placing the top banner in the center. If I program it to the center in firefox, it wont be centered in Safari or in Chrome and vice verca. Does anybody know how to correct that? | 
11-03-2012, 04:37 PM
|  | The Lowdown Diggler | | Join Date: Apr 2006 Location: Huntington Beach, CA | | Quote: |
Originally Posted by Manuel101 So I spent over a month researching and learning how to create a website using Adobe Dreamweaver. I kept experimenting and going to bed at 3am or 4am in the morning and this is what i have to show for it: www.popculturexperiment.com. What do you guys think of it?
Do any of you know how to create a site? I am having problems placing the top banner in the center. If I program it to the center in firefox, it wont be centered in Safari or in Chrome and vice verca. Does anybody know how to correct that? | I'm on my iPhone, so I can't see what you've posted. There are several ways to do this, but the best, most universally accepted by all browsers is using layers. Look into using dhtml and style sheets. Dreamweaver really impresses me how well it handles all this. It would be hard to assess what you're talking about without looking at the code, but a <div></div> tag with the correct alignment parameters should do the trick. | 
11-03-2012, 04:41 PM
|  | Registered User | | Join Date: Feb 2009 Location: Tampa, Florida, US | | Quote:
Originally Posted by Manuel101 So I spent over a month researching and learning how to create a website using Adobe Dreamweaver. I kept experimenting and going to bed at 3am or 4am in the morning and this is what i have to show for it: www.popculturexperiment.com. What do you guys think of it? Do any of you know how to create a site? I am having problems placing the top banner in the center. If I program it to the center in firefox, it wont be centered in Safari or in Chrome and vice verca. Does anybody know how to correct that? | You want to use your CSS file to position it with something like this:
<div class="banner">Banner Information</div>
And then your CSS is this:
.banner {
width:500px;
margin-right: auto;
margin-left:auto;
}
CSS can have different prefixes for different browsers, mozilla and I think opera are "-mozilla"
Safari is "-webkit" etc.
__________________ Quote:
Originally Posted by wraub Ordinarily, I would crawl naked across broken glass covered in lukewarm monkey vomit to avoid Corgan's vocals. | Quote:
Originally Posted by Unrepresented Is "Cornish" Brit slang for nipples? Cuz that's where I wear my pasties. |
Last edited by sloasdaylight : 11-03-2012 at 04:48 PM.
| 
11-04-2012, 12:44 AM
| | | Quote:
Originally Posted by sloasdaylight You want to use your CSS file to position it with something like this:
<div class="banner">Banner Information</div>
And then your CSS is this:
.banner {
width:500px;
margin-right: auto;
margin-left:auto;
}
CSS can have different prefixes for different browsers, mozilla and I think opera are "-mozilla"
Safari is "-webkit" etc. | +1 although you shouldn't have to do anything browser specific here.
__________________
My current band: palebluedotband.bandcamp.com
My YouTube channel: youtube.com/user/alcatrazescapee
| 
11-04-2012, 01:09 AM
|  | No need to ask, he's a smooth... Moderator | | Join Date: Mar 2005 Location: West Midlands UK | | | Just make sure it looks like you want in IE and you'll be fine with the big majority of visitors. People using other browsers will make up a tiny minority of folks coming to your site.
__________________ Quote:
Originally Posted by SBassman | | 
11-04-2012, 04:42 AM
| | Registered User | | Join Date: Feb 2005 Location: Edinburgh & Dundee, Scotland | | Quote: |
Originally Posted by bassybill Just make sure it looks like you want in IE and you'll be fine with the big majority of visitors. People using other browsers will make up a tiny minority of folks coming to your site. | Depends on your target demographic and where they are located.
Most stats put Chrome as the most used browser overall (~30%) followed by IE, and Firefox only a few % behind that, Safari isn't that far behind Firefox. Those four browsers account for ~85% of users. The use of IE has dropped a lot in the last 5 years, non-IE browsers are no longer a minority.
__________________
EB Musicman/Ibanez/Ampeg/Peavey/Marshall/Tech 21
| 
11-04-2012, 05:06 AM
|  | No need to ask, he's a smooth... Moderator | | Join Date: Mar 2005 Location: West Midlands UK | | Quote:
Originally Posted by i_got_a_mohawk Depends on your target demographic and where they are located.
Most stats put Chrome as the most used browser overall (~30%) followed by IE, and Firefox only a few % behind that, Safari isn't that far behind Firefox. Those four browsers account for ~85% of users. The use of IE has dropped a lot in the last 5 years, non-IE browsers are no longer a minority. | That actually does surprise me - I thought most people still used IE. Clearly I was mistaken.
I tried Chrome and just couldn't get along with it. I do use Safari occasionally though (when I get my iPad out of its box about once a month).
__________________ Quote:
Originally Posted by SBassman | | 
11-04-2012, 06:28 AM
| | Registered User | | Join Date: Feb 2005 Location: Edinburgh & Dundee, Scotland | | Quote: |
Originally Posted by bassybill That actually does surprise me - I thought most people still used IE. Clearly I was mistaken.
I tried Chrome and just couldn't get along with it. I do use Safari occasionally though (when I get my iPad out of its box about once a month). | Safari had a fair chunk from the apple users, Chrome really seems to have taken IEs top spot, certainly a recent thug though.
Never really got on with Chrome either, been a Firefox user for years, though may give Chrome another shot, it must be doing something right!
__________________
EB Musicman/Ibanez/Ampeg/Peavey/Marshall/Tech 21
| 
11-04-2012, 06:48 AM
|  | Registered User | | Join Date: Feb 2009 Location: Tampa, Florida, US | | | Optimizing for I.e. is also a bad idea because the browser as a whole (with 9+ being the only exceptions I know of) that actually respects a lot of CSS standards. I can't count the number of times I've had to include special little I.e. snippets of code to make the page render properly in that browser. Webkit browsers like Chrome and safari are easily my favorite to code in as they seem to really be on the ball about keeping up with CSS standards. There's nothing sweeter than a CSS3 compatible browser.
__________________ Quote:
Originally Posted by wraub Ordinarily, I would crawl naked across broken glass covered in lukewarm monkey vomit to avoid Corgan's vocals. | Quote:
Originally Posted by Unrepresented Is "Cornish" Brit slang for nipples? Cuz that's where I wear my pasties. | | 
11-05-2012, 08:04 AM
| | | | So I spent two whole days completely reconstructing the site. I learned a lot in the process so it should only get easier next time. I am very happy with the results. | | Thread Tools | Search this Thread | | | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | |