Your tutorials are always great but please help me out in this problem.Yes I'm a noob at CSS but I know all other programming languages.That's my problem:At Firefox it worked perfectly but at google chrome there weren't any rounded corners.How can I fix the problem ?
@HowToDeveloper Hi, for firefox its the -moz prefix but for chrome and safari it is -webkit you have to declare both seperately. Now that CSS3 has become more popular you can just declare the border-radius on its own without the -moz or -webkit prefixes in front. the prefixes are needed for older browsers now. I hope that makes sense. heres what i mean:
@chiller4life1000 You can use a php 'include' to put the menu on every page dynamically. there should be a tutorial on youtube for that I'm sure. Generally, for dreamweaver you would just create a template and then roll pages from that template. But, a PHP include is a great way to insert a menu.
Hellooo, Really liked the guide. works very well. However i'm getting a cross browser issue myself. works fine on safari, chrome. but on the latest IE the padding between the line and the buttons is slightly different. quite a pain! would you have any ideas on how to get around that one? Many thanks.
AHH Ignroe my comment. i was trying to use embedded fonts. they didnt work so im using web safe fonts instead. it looks fantastic! Thank you so much for the guide. so very helpful.
Yeah, everything is great, but your tutorial here AND your tutorial on your website don't include how to get the effect on IE. Would be a great tutorial, but a lot of people still use IE...why leave them out on the experience?
@davidcrandallmusic an update is coming. you can achieve the effect in IE9 by using just border-radius but you cannot just short code so must specify each corner so border-radius: 25px 25px 0px 0px; if you want achieve the same in IE8 and IE7 then you can download and install CSS3pie dot com
Thank you thank you thank you for this tutorial. We all have to start somewhere! Will be watching your others. (easy to digest, easy to follow, great work)
James, u are really an awesome teacher. I like the way u explain. BTW, can u teach us how to create a JavaScript dropdown menu? I mean what if i wanna add a timer to dropdown menu? I want the drop downs to disappear smoothly like an opacity.
@aKiC100 im guessing you mean the properties panel. every change you make in dreamweaver the properties panel goes blank until you refresh the page by either pressing F5 or clicking on the refresh button in the right side panel.
I can't see the ID field in the properties section. The only fields I'm seeing are "format", "font", "style", "size".. Please help. I'm using Adobe Dreamweaver CS3
@DreamWeaverTutorial - There's no buttons on the left of the 'Format' and 'Font' fields which are the farthest on the left of the panel. No worries. I'll figure this out. Anyway, kudos for this great tutorial. =)
Well, it all is great exept one thing, In the end when you set it align center, you do it with, margin left and top. wich means it will just be in the middle for you and your computer, becouse you style it after your view ??
@DreamWeaverTutorial It works after adding many metadata tags and what not.. Had to struggle to find all that you need to make it work... and that too it works only from IE 9. Then comes the struggle to find the pixel difference in IE and mozilla. Finally i chose to move to background images.. Bah! I should have done it the first place.. :(
@jardonali123 hi, it works in all browsers. If it didn't then you may have made a mistake in the code. Firefox has an issue that I reported with the 1 pixel difference. Its a simple fix
DreamWeaverTutorial most of the people are using FF or Chrome so it works and noone cares about old and chunky IE6,7,8 and even 9 is crap , microsoft has to be shame about their cappy browser
@Adnan3035 That's funny because im looking at it right now in IE6 and it looks fine. i also checked it in ie7 ie8 and ie9 and it still works. The only thing that does not work is rounded corners as one would expect from microsoft who have only implemented it into ie9. thats still not a problem as you can download css3 pie to add retro styling to the older IE browsers. suggest you check your coding before you leave silly comments that it doesn't work.
This is a nice tutorial indeed but I have a question still: is there any way to make a CSS based tab-menu without having to retype the code in each html file? Like is is possible to use a template without going into to much trouble? Because with this example, if you want to change something to the menu, you'd have to go in every page and do it, right? :s
Loved the video...thank you very much...but neither -webkit-border- nor -moz-border- working on my computer... i am using dreamweaver cs5...PLease help
Thank you !! you are instructions are clear and to the point. However, after I created the links I do not get a tabmenu.html, only the tabmenu.css. I am using Dreamweaver CS5 and is nothing in my file folder with the name of: tabmenu.html. Could you please help?
These are the best instructions I've seen for making a tabbed menu using css! All the other tutorials I found either don't work in ie or involve javascript!
This has been flagged as spam show
Im using cs3 and i just cant find id in the properties panel.....i just cant find it? Can u help me?
TheAplus073 14 hours ago
How do you add a dropdown menu to the tabbed menu bar
riq1211 3 days ago
it doesn't work, update this video
BadBoyJr69 1 month ago
Your tutorials are always great but please help me out in this problem.Yes I'm a noob at CSS but I know all other programming languages.That's my problem:At Firefox it worked perfectly but at google chrome there weren't any rounded corners.How can I fix the problem ?
HowToDeveloper 1 month ago
@HowToDeveloper Hi, for firefox its the -moz prefix but for chrome and safari it is -webkit you have to declare both seperately. Now that CSS3 has become more popular you can just declare the border-radius on its own without the -moz or -webkit prefixes in front. the prefixes are needed for older browsers now. I hope that makes sense. heres what i mean:
border-radius-top-left: 5px; <-- generic
-moz-border-radius-topleft: 5px; <-- specific
-webkit-border-top-left-radius:5px; <--specific
DreamWeaverTutorial 1 month ago
@DreamWeaverTutorial Thank you for the quick answer ! You really helped me out ;)
HowToDeveloper 1 month ago
Hi James,
Would this work in ebay as I know their a pain in the ass for not allowing any javascript or php
p7edn1 1 month ago
@p7edn1 yes it should work ok as its just css and html
DreamWeaverTutorial 1 month ago
-moz-border-radius--topleft:15px; -moz-border-radius--topright:15px;
the code doesnt work :( it sayd unsupported property...i watched the whole tutorial just to know about curved tabs :( plz help...
also tell me the alternative for text-shadow....its also not supported :(
Rydxii 1 month ago
@Rydxii hi, go to my site, search for the article tutorial of the same name, copy and paste the code you see there into your CSS document.
DreamWeaverTutorial 1 month ago
thanks for your help i m a beginner at the moment and will start learning php soon just at html and css at the moment
thanks once again for your help
chiller4life1000 2 months ago
hi veri gud tutorial but instead of making 5 pages can a person make it in 1 page with html and css or do we have to use javascript for that
thanks for your help.
chiller4life1000 2 months ago
@chiller4life1000 You can use a php 'include' to put the menu on every page dynamically. there should be a tutorial on youtube for that I'm sure. Generally, for dreamweaver you would just create a template and then roll pages from that template. But, a PHP include is a great way to insert a menu.
DreamWeaverTutorial 2 months ago
YOu ROCK!!!!
Divyanshuthegame 3 months ago
thank you...
anilr84 4 months ago
Hellooo, Really liked the guide. works very well. However i'm getting a cross browser issue myself. works fine on safari, chrome. but on the latest IE the padding between the line and the buttons is slightly different. quite a pain! would you have any ideas on how to get around that one? Many thanks.
LordNeb 4 months ago
AHH Ignroe my comment. i was trying to use embedded fonts. they didnt work so im using web safe fonts instead. it looks fantastic! Thank you so much for the guide. so very helpful.
LordNeb 4 months ago
This has been flagged as spam show
hey there
I have seen all your videos,they are really good.please check out also my vids on my channel
they are really good (that's what i thought of them)
if you like them than plzzz SUBSCRIBE
Thnx in advance
selftestengine 4 months ago
Brilliant videos mate, I have learnt so much. Keep them coming!! Cheers
ajdocs 4 months ago
hiii can you post the code for this in the discripton please
gippodave 5 months ago in playlist gippodave's Favourited Videos
@gippodave The code for all the tutorials is on the website
DreamWeaverTutorial 5 months ago
Good tutorial. But heavy use on CSS accessing the DOM elements.
Also, need better explanation on cross-browser issues.
afzal1786 5 months ago
@afzal1786 Thanks expert.
DreamWeaverTutorial 5 months ago
THANK YOU THANK YOU THANK YOU!!!!!!!
it' s the VERY VERY GOOD tutorial!!!!!
THANK THANK........
sarremabo 6 months ago
:S :S :S :S :S :S!! but your creating 5 diferents pages with the property "onlink" on every one so wheres the dynamic way to have 5 menus :S
chumox 7 months ago
@chumox learn better English. then ask the question again and then say please.
DreamWeaverTutorial 7 months ago 2
Yeah, everything is great, but your tutorial here AND your tutorial on your website don't include how to get the effect on IE. Would be a great tutorial, but a lot of people still use IE...why leave them out on the experience?
davidcrandallmusic 7 months ago
@davidcrandallmusic an update is coming. you can achieve the effect in IE9 by using just border-radius but you cannot just short code so must specify each corner so border-radius: 25px 25px 0px 0px; if you want achieve the same in IE8 and IE7 then you can download and install CSS3pie dot com
DreamWeaverTutorial 7 months ago
Thank you thank you thank you for this tutorial. We all have to start somewhere! Will be watching your others. (easy to digest, easy to follow, great work)
broismeurdad 7 months ago
James, u are really an awesome teacher. I like the way u explain. BTW, can u teach us how to create a JavaScript dropdown menu? I mean what if i wanna add a timer to dropdown menu? I want the drop downs to disappear smoothly like an opacity.
HouseofKannadigas 7 months ago
Hi, great tutorial, just one quick question. My properties tab is blank.. help please?
ty :)
aKiC100 7 months ago
@aKiC100 im guessing you mean the properties panel. every change you make in dreamweaver the properties panel goes blank until you refresh the page by either pressing F5 or clicking on the refresh button in the right side panel.
DreamWeaverTutorial 7 months ago
@DreamWeaverTutorial
Thank you :)
aKiC100 7 months ago
I can't see the ID field in the properties section. The only fields I'm seeing are "format", "font", "style", "size".. Please help. I'm using Adobe Dreamweaver CS3
mrfreeguitarlessons1 8 months ago
@mrfreeguitarlessons1 in the properties panel on the far left there is a button for html and a button for css, click on the html button
DreamWeaverTutorial 8 months ago
@DreamWeaverTutorial - There's no buttons on the left of the 'Format' and 'Font' fields which are the farthest on the left of the panel. No worries. I'll figure this out. Anyway, kudos for this great tutorial. =)
mrfreeguitarlessons1 8 months ago
I can't see the ID field in the properties section. The only fields I'm seeing are "format", "font", "style", "size".. Please help.
mrfreeguitarlessons1 8 months ago
Well, it all is great exept one thing, In the end when you set it align center, you do it with, margin left and top. wich means it will just be in the middle for you and your computer, becouse you style it after your view ??
Regards
Ps, great tutorial !
PekDraine 8 months ago
Great tutorial!
Thanks.
dashby1969 8 months ago
doesnt work on IE fail tutorial
Akshayphadke 9 months ago
@Akshayphadke It does work in IE, you just suck at web design
DreamWeaverTutorial 9 months ago 9
@DreamWeaverTutorial It works after adding many metadata tags and what not.. Had to struggle to find all that you need to make it work... and that too it works only from IE 9. Then comes the struggle to find the pixel difference in IE and mozilla. Finally i chose to move to background images.. Bah! I should have done it the first place.. :(
jardonali123 2 months ago
@jardonali123 hi, it works in all browsers. If it didn't then you may have made a mistake in the code. Firefox has an issue that I reported with the 1 pixel difference. Its a simple fix
line-height:23px; on the
#navbar #holder ul li a
DreamWeaverTutorial 2 months ago
Thank you so much for all your help with my project! You are amazing!!!
bujzz 10 months ago
Can the rounded corners be applied to a Vertical Spry Tabbed Panel in Dreamweaver?
Thank you!
bujzz 10 months ago
DreamWeaverTutorial most of the people are using FF or Chrome so it works and noone cares about old and chunky IE6,7,8 and even 9 is crap , microsoft has to be shame about their cappy browser
Marchonon 10 months ago
@Adnan3035 That's funny because im looking at it right now in IE6 and it looks fine. i also checked it in ie7 ie8 and ie9 and it still works. The only thing that does not work is rounded corners as one would expect from microsoft who have only implemented it into ie9. thats still not a problem as you can download css3 pie to add retro styling to the older IE browsers. suggest you check your coding before you leave silly comments that it doesn't work.
DreamWeaverTutorial 10 months ago
PART1?
truemetalist89 11 months ago
It's strange to get this excited about coding, but this menu is gorgeous! And I learned a lot following along. Thank you James.
-Sam
sonicskilz 1 year ago
Floating List items with display: block affects win XP: Internet Explorer 6.0
Menu is not displayed correctly! menu items positions diagonal over the screen.
HamiDjoukou 1 year ago
can you help me it doenst work in ie
MrRalleuc 1 year ago
To get this centered , would you just change the padding to whatever pixel count ?
LurkerDanny 1 year ago
Your tutorial is amazing! best i have ever seen. It would be cool if you could make tutorials about javascript and php.
TheSexyCeleb 1 year ago
This is a nice tutorial indeed but I have a question still: is there any way to make a CSS based tab-menu without having to retype the code in each html file? Like is is possible to use a template without going into to much trouble? Because with this example, if you want to change something to the menu, you'd have to go in every page and do it, right? :s
kleinespelvids 1 year ago
Congratulation for the tutorial,it was great ! Thank you ! :)
durrrmind 1 year ago
Loved the video...thank you very much...but neither -webkit-border- nor -moz-border- working on my computer... i am using dreamweaver cs5...PLease help
akshivanvi 1 year ago
Hola desde colombia.
Muchas gracias por el tutorial, con este tutorial me aclaras muchas dudas.
Tengo una pregunta: No me funcionan las esquinas redondas que podria ser, por que lo escribo de la misma forma en la que tu lo escribes Gracias
teponche 1 year ago
Awesome!
hoser3699 1 year ago
Thank you !! you are instructions are clear and to the point. However, after I created the links I do not get a tabmenu.html, only the tabmenu.css. I am using Dreamweaver CS5 and is nothing in my file folder with the name of: tabmenu.html. Could you please help?
Thank you
ceresxx99 1 year ago
These are the best instructions I've seen for making a tabbed menu using css! All the other tutorials I found either don't work in ie or involve javascript!
Thank you so much!!
bluelizard81 1 year ago
great tutorial !!
daveg1510 1 year ago
@daveg1510 thank you :)
DreamWeaverTutorial 1 year ago
All I can say is AWESOME!!!!!!! Gr8t Tutorial
kpwebdezigns 1 year ago
@kpwebdezigns thanks for your comments
DreamWeaverTutorial 1 year ago
tnx man this is very nice
Dexon25 1 year ago
Very professional presentation. Thank you very much.
sednamoon 1 year ago