Ask a Question related to Macromedia Dreamweaver, Design and Development.
-
DiMa #1
Re: cell borders
see this: [url]www.dimadesign.net/stuff/links.html#borders[/url]
--
--
DiMa
--------------------
WEB FORUM USERS: Please log on to the Newsgroup for quicker replies to your
posts:
[url]news://forums.macromedia.com/macromedia.dreamweaver[/url]
For Answers, check here first:
[url]http://groups.google.com/advanced_group_search?q=+group:macromedia.dreamwea ver[/url]
[url]http://www.macromedia.com/support/dreamweaver/technotes.html[/url]
[url]http://www.projectseven.com/faqbase[/url]
[url]http://www.dreamweaverFAQ.com[/url]
[url]http://www.macromedia.com/support/forums/etiquette.htm[/url]
DiMa Design > From Lines...to Designs
[url]http://www.dimadesign.net[/url]
"Daniel Park" <dpark@lapazpih.org> wrote in message
news:beqjhd$5uh$1@forums.macromedia.com...> In Frontpage there is a feature that lets you draw put a border
> independently on any side of any cell. Is this feature available on DW MX?
> What do I do if I want to draw a line on the top of a cell. Do in need to
> just insert a picture?
>
> Dan
>
>
DiMa Guest
-
cfgrid - Update a cell based on the value of another cell
I would like to update a hidden cell based on the value of a visible cell. Is this possible? Thanks -
How to set cell background based on cell value when datagrid is displayed
I would like to check a datagrid cell value, and change the color of the cell background, when a datagrid is displayed. I want to do this as early... -
I need to have a tooltip appear over a cell showing data from another cell in the same row.
I have a datagrid with locations from around the world. In hidden cells, I have the Lat and Long of that location. I need to be able to mouseover... -
RadioButtonList In A DataGrid Cell - Can I find the selected button without editing the cell?
I have an ASP.NET form with a DataGrid and Button. I want to put a RadioButtonList in a DataGrid cell. I bind it to an ArrayList which has a... -
borders on just one side of a cell?
I've heard you can create borders that run along just one side of a table cell/row etc. you can also make them dotted so you can create dotted rules... -
Paul Brown #2
Re: Cell borders
"BwanaP" <sedorype@state.gov> wrote in message
news:bfo30s$1vk$1@forums.macromedia.com...see> There must be a way to assign a border only to one of the four edges of a
> cell, but I can't see how. The cell properties only shows border color. Is
> there another way to put a line between cells?
>
> When I create a table and set the border to 0, there is no visual aid tocan> the cell - can this be added? When I view a page created in FrontPage IFor this your are best (IMHO) to use a style sheet, then in the CSS panel of> still see the dotted gridlines used for this.
DW select the element you are applying to the cell. Open this to reveal the
'CSS Style Definition for .whatever'. From the border section here you can
control each individual side of the cell.
Hope that helps :)
PB
Paul Brown Guest
-
jojo #3
Re: Cell borders
BwanaP wrote:
Hi> There must be a way to assign a border only to one of the four edges of a
> cell, but I can't see how. The cell properties only shows border color. Is
> there another way to put a line between cells?
>
> When I create a table and set the border to 0, there is no visual aid to see
> the cell - can this be added? When I view a page created in FrontPage I can
> still see the dotted gridlines used for this.
html will apply the border to all 4 sides of the cell, you can use CSS
to pick out a single border.
..mystyle{
border-left: 1px solid #666;
}
You would apply that style to the td tag you wanted the border to appear in.
If you feel you need to see the html border while you work set it to 1
and then return it to 0 before you publish.
--
Cheers jojo
Team Macromedia Member Volunteer for Dreamweaver MX
----------------------------------------------------
CF CMS Details: [url]http://www.dwfaq.com/Store/detail/?id=wdCFcms[/url]
CF CMS Demo: [url]http://www.webade.hostinguk.com/cfcms/[/url]
----------------------------------------------------
Extending Knowledge, Daily.
[url]http://www.communityMX.com/[/url]
----------------------------------------------------
jojo Guest
-
Joe {RoastHorse} #4
Re: Cell borders
you can use css (remove all attributes from the table), eg:
<style>
table {
border-collapse: collapse; /*this will remove the gap between cell
borders*/
}
td {
border-style: solid;
border-color: #000000;
border-width: 0px 1px 0px 1px;
}
</style>
experiment with the css border settings in DW.
joe
"BwanaP" <sedorype@state.gov> wrote in message
news:bfo30s$1vk$1@forums.macromedia.com...see> There must be a way to assign a border only to one of the four edges of a
> cell, but I can't see how. The cell properties only shows border color. Is
> there another way to put a line between cells?
>
> When I create a table and set the border to 0, there is no visual aid tocan> the cell - can this be added? When I view a page created in FrontPage I> still see the dotted gridlines used for this.
>
>
Joe {RoastHorse} Guest



Reply With Quote

