 |
N. B. This page is enhanced with Cascading Style Sheets created with TopStyle by Bradbury Software
Red Hat o/s resources:
Disclaimer:
The opinions expressed in these forums are not necessarily those of the respective companies. These forums are intended to aid in the development of new technologies. However, these links were mentioned in discussions mainly to support different arguments and points of views as well as to provide technical support for specific problems with specific Software and Hardware. Some links may not work many more. Since I don't have the time to check all the links I would appreciate if I am notified of the expired or dead links.
tia Philip
Links found on news://news.bradsoft.com/ To access Bradbury Software's newsgroups go to: news://news.bradsoft.com
- http://www.bradsoft.com/topstyle/download/readme.asp
- Learn about what is new in the latest version of Topstyle web designing software
- TopStyle Frequently Asked Questions:
- TopStyle can now be purchased from Beyond.com
- Vote on features you would like to see in the next version of Topstyle
- Latest beta versions of Topstyle is available here
- TopStyle - CSS Editor for Windows
- http://www.hsguide.com
- HomeSite Help
- HomeSite Help: The Bookstore
- Download IE4.01 SP2 from here
- A list of some of the fixes in SP2 can be found here
- http://www.jsr.communitech.net/
- Allaire beta forums:
- Discusses common font groups across platforms.
- Eric A. Meyer http://www.meyerweb.com/eric/
- Author, "CSS: The Definitive Guide" http://www.oreilly.com/catalog/css/
Editor, Style Sheets Reference Guide http://style.webreview.com/
Coordinator, W3C CSS1 Test Suite http://www.w3.org/Style/CSS/Test/
- http://www.skeeter-s.com/svg
-
- SVG examples for Mozilla
- http://www.opera.com
- Opera Software - get your copy of Opera web browser here
- Question: We run a companies Intranet where authors can add content to the Intranet.
In order to gain benefits from a consistent look and feel of the pages we use a single, external stylesheet which is linked in every html-page on the Intranet.
Authors are free to add tables to the html pages.
However, when a table is used we want it to have a consistent (company) look: If no border is defined <table border="0"> we do not want to draw a border.
If a border value greater than 0 is defined, we want to draw a 1px solid colored border (overriding any other html border tags that may be given in the html document, like the bordercolor)
Is it possible to add a style for this? Any suggestions would be appreciated. R. Beekman
- For browsers that support attribute selectors (so far, only Gecko-based):
table[border] { /* All tables with border attribute set */
border: 1px solid black;
}
table[border="0"] { /* Tables where border attribute is "0" */
border: none;
}
Steve Fulton
- I use TS lite.. without doing the research myself.. what are the standout advantages to the full version?
Thanks, Jay A. Grantham
- There are a large number of features in the Pro version that aren't in the Lite version.
A list of some of them may be found at http://www.bradsoft.com/topstyle/tslite/fullver.asp, and a list of some of the new features in TopStyle Pro 2.0 may be found at
http://www.bradsoft.com/topstyle/2.0/whatsnew/. Nick Bradbury Bradsoft.com
- http://www.webade.co.uk
- http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34732C-2830-11D4-
AA9700508B94F380&method=Full
- Use javascript if you don't have ASP support on your webhost.
There are scripts to select between different style sheets based upon the browser.
Here's one in a HomeSite wizard: CSS JScript Wizard.
This is a vtm for adding a javascript that detects the browser version and links to a style sheet based on the browser version. author: Wil Genovese, juggler@citilink.com
- http://glish.com/css/
- When using XML rules and you need tables for textlayout, because a textcolumn that is left-aligned and another column centered or right-aligned is needed in the window, try this solution.
|