Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
AJAY_KUMAR #1
Code Hint and DHTML
Folks,
Bear with me if i sound really naive. When i code a HTML page, when I hit the
spacebar the code hints pop op and I can choose from a selection of HTML
properties. I am trying to use DHTM properties like <tr class=" text-align :
center">. If i select class from the drop down list and then dreamweaver says
no CSS style which is true cause i have co css files attached to the current
html file. But this <tr class=" text-align : center"> should work also. So I
AM WONDERING whether is there a way in dreamweaver to give me hints for DHTML..
Thanks
A
AJAY_KUMAR Guest
-
code hint javascript api
I am extending dreamweaver to add code hinting and color coding to my proprietary scripting language. I am fine with the Javascript but I am not... -
pipe to a script hint
Hi I can feed an email to a php script but am having problems figuring out how to grab the incoming data. At a guess a while loop reading... -
A little hint
Hi, I know i'll burn hell for a long time for this post, but here I go ;) I'm a sysadmin/webadmin and I looking for a little help. A few... -
hint: making CSS IDs and complex classes in dreamweaver
hey.. that sounds GREAT! i will check that instantly.. -
Attaching "OnClick" Javascript code to dhtml popup menu links
I am currently developing a web site using fireworks, and am trying to figure out a way (through hand-coding) of attaching a javascript function... -
Murray *TMM* #2
Re: Code Hint and DHTML
> I am trying to use DHTM properties like <tr class=" text-align :
DHTML is usually used to describe the 'confluence' of javascript and HTML in> center">.
such a way that the markup on the page is changed dynamically, i.e., after
the page has been fetched from the server. What you show would not be
dHTML. In fact, what you show is only invalid markup.
If you wanted to use inline CSS, you would have -
<td style="text-align:center">
or if you wanted to use an embedded stylesheet or an externally linked one,
you would have -
<td class="whatever">
with this in the stylesheet -
..whatever { text-align:center; }
See what I mean?
As soon as you enter style=" when you are writing the inline style, you
should get a code hint dropdown. In addition, you can trigger one by using
Ctrl-spacebar.
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"AJAY_KUMAR" <webforumsuser@macromedia.com> wrote in message
news:dbivql$n3j$1@forums.macromedia.com...> Folks,
>
> Bear with me if i sound really naive. When i code a HTML page, when I hit
> the
> spacebar the code hints pop op and I can choose from a selection of HTML
> properties. I am trying to use DHTM properties like <tr class="
> text-align :
> center">. If i select class from the drop down list and then dreamweaver
> says
> no CSS style which is true cause i have co css files attached to the
> current
> html file. But this <tr class=" text-align : center"> should work also.
> So I
> AM WONDERING whether is there a way in dreamweaver to give me hints for
> DHTML..
>
> Thanks
>
> A
>
Murray *TMM* Guest



Reply With Quote

