best practices: how many css pages?

CS6 Newbie Question

I seem to keep automatic generation of pages in css. I'm trying to:

-boilerplate.css: redirects all browsers

-fluid.css: fluid grid sheet

-content.css: for styling everything (paragraphs, div, etc.)

Is this a good approach?

Somehow I have continued to generate fragments everywhere

When to use dialog boxes to interface design instead of writing directly in mode code.

When you create a new CSS rule, you specify DW anywhere that it defined.   See screenshot.

The options for this document are:

  • (This Document only)
  • (New Style sheet file)
  • boilerplate. CSS
  • FluidGrid.css
  • Content.CSS

You must choose new each time.

Nancy O.

Tags: Dreamweaver

Similar Questions

  • Roles, permissions - DataCenter, file, Cluster, host Layout - best Practices\How-to

    Have a little problem with permissions and roles. I'm sure it will be an easy one for those of you with more experience of working with roles. I hope that my layout organization made with quote boxes is readable.

    The Organization has just spun a new host ESXi 4 for developers and added in vCenter. Developers want to use the vSphere Client\VIC to manage the ESX Server. They need rights to create virtual machines, remove VMs, clone VMs, VMs potential power. However, we don't want them to be able to reach production.

    According to the diagram below, the new host of development, labeled as "HostC (autonomous DEVELOPMENT host)", is located under "Data Center-City-2", who also owns the production ESX clusters. " And obviously I don't want developers having rights on production groups.

    Lets say I have create a role called 'HostC Dev Sandbox Rights', add users and assign directly to "HostC" below. This role contains the VM 'create' right, however when I run the wizard Creation of VM of HostC as a member of the role the vSphere Client tells me this task requires rights create VM on the level of data center! But given these developers to create VMS access on the data center would give them rights to create virtual machines in the poles of Production! Which is obviously a problem.

    I can't believe that our need to give these rights to ONLY one host in a DataCenter is rare. I don't know that there is a misunderstanding on my part of how to configure VMware roles for best practices.

    Anyone with more expirence on VMware roles ready to help me on this one? Thanks in advance!

    Organization representative Schema using quote boxes:

    vSphere (vCenter Server)

    City of DataCenter-1

    Many cases, clusters, hosts

    City of DataCenter-2

    FolderA (Division A)

    ClusterA (A Cluster of Production)

    HostA1 (Production host in Group A)

    HostA2 (Production host in Group A)

    %Windir%$NTUninstallKB941568_DX8$\Spuninstb (division B)

    Focus (Production Cluster B)

    HostB1 (Production host in Group B)

    HostB2 (Production host in Group B)

    HostC (autonomous DEVELOPMENT host) - under %windir%$NTUninstallKB941568_DX8$\Spuninstb but not in the cluster

    City Center-3

    Many cases, clusters, hosts

    You can apply permissions directly to the data store.  I didn't need to go further than the clusters in our environment, but what really works for you is to place data warehouses in folders for storage.  Have the records be the names of your groups hosts and clusters.  Then place the warehouses of data for each cluster in the corresponding folder.  Then, just apply permissions for the data on the record instead of warehouses in each individual data store.  Off topic a little, but a records of something in the store of data discovered lack is the function of "views of storage" and I put a future application.

    Yes, if you set permissision to the view of the data store the user can turn opinion and see.  Extensive your permissions framework tests is guaranteed before pushing users.  Looks like you are already doing.

  • (Best practices) How to store the adjustment curve values?

    I got two sets of data, Xreal and Xobserved, abbreviated Xr and Xo. Xreal is a data set that contains the values of sensor from a reliable source (it's a pain to collect data for), and Xobserved is a set of data containing the values from a less reliable source, but much less maintenance, sensor. I'll create a VI that receives the entry of these two sources of data, stores it in a database (text file or csv) and crosses some estimators of this database. The output of the VI will be best approximation of linear adjustment (using regression, not the Xreal) of the input value of Xobserved.

    What are best practices for storage Xreal and Xobserved? In addition, I'm not too known using best VI made, take CSV files for entry? How would format it best?

    '

    Keep things simple.  Convert the table to CSV file and write to a text file.  See attached example.

  • best practices; How to reduce waiting at direct changes

    I'm tired of waiting 20 seconds or so whenever I have register a change in a single file. How can I make changes to the server and do not take into account all unchanged documents? I would be very happy if I could just get rid of that expectation, it slows down all my thought down process.

    Pacoan wrote:
    > I'm tired to wait 20 seconds or so whenever I have save a change
    > to a file. How can I make changes to the server and ignore any unchanged
    > documents? I would be very happy if I could just get rid of that expectation, it slows down
    > all my thought down process.
    >
    You work directly from the server? Put in place for the management of the Site, your
    Local news to point to your local hard drive and your remote to info
    point to the site online. The synchronize command will then what
    you want.

    See the help button in the Site Manager.

    Harvey

  • Best practices for the application of page multi Landscape/Portrait

    Hello
    I am looking for information on track to develop auto guide demand in pure actionscript with new components of qnx.fuse, but there is not a good example in real code. Every time I tried to make it resizable layout to get deformated fluid only components in portrait or landscape mode.

    I have a simple application with the point main and 3 displays:

    public class Main extends NavigatorSprite
    {
        public function Main()
        {
            addEventListener(Event.ADDED_TO_STAGE, init); 
    
            stage.nativeWindow.visible = true;
            stage.scaleMode = StageScaleMode.NO_SCALE;
            stage.align = StageAlign.TOP_LEFT;
            stage.nativeWindow.activate();
        }
        private function init(e:Event):void
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);
            navigator.pushView(View1);
        }
    }
    
    public class View1 extends ViewSprite
    {
    
        private var container:Container;
        private var button_two:LabelButton;
        private var button_three:LabelButton;
    
        public function View1
        {
            addEventListener(Event.ADDED_TO_STAGE, init);
        }
    
        private function init(e:Event):void
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);
    
            container = new Container();
            var layout:RowLayout = new RowLayout();
            container.layout = layout;
    
            button_two = new LabelButton();
            button_two.label = "to page 2";
            button_two.width = 150;
            button_two.height = 45;
            button_two.addEventListener(MouseEvent.CLICK, handleTwoClicked);
            container.addChild(button_two);
    
            button_three = new LabelButton();
            button_three.label = "to page 3";
            button_three.width = 150;
            button_three.height = 45;
            button_three.addEventListener(MouseEvent.CLICK, handleThreeClicked);
            container.addChild(button_three);
    
            addChild(container);
        } 
    
        private function handleTwoClicked(e:Event):void
        {
            navigator.pushView(View2);
        }
    
        private function handleThreeClicked(e:Event):void
        {
            navigator.pushView(View3);
        }
    }
    
    public class View2 extends ViewSprite
    {
    
        private var container:Container;
        private var back:BackButton;
    
        public function View2
        {
            addEventListener(Event.ADDED_TO_STAGE, init);
        }
    
        private function init(e:Event):void
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);
    
            container = new Container();
            var layout:RowLayout = new RowLayout();
            container.layout = layout;
    
            back = new BackButton();
            back.label = "Back";
            back.width = 100;
            back.height = 45;
            back.addEventListener(MouseEvent.CLICK, goBack);
            container.addChild(back);
    
            addChild(container);
        } 
    
        private function goBack(e:Event):void
        {
            navigator.popView();
        }
    }
    
    public class View3 extends ViewSprite
    {
    
        private var container:Container;
        private var back:BackButton;
    
        public function View3
        {
            addEventListener(Event.ADDED_TO_STAGE, init);
        }
    
        private function init(e:Event):void
        {
            removeEventListener(Event.ADDED_TO_STAGE, init);
    
            container = new Container();
            var layout:RowLayout = new RowLayout();
            container.layout = layout;
    
            back = new BackButton();
            back.label = "Back";
            back.width = 100;
            back.height = 45;
            back.addEventListener(MouseEvent.CLICK, goBack);
            container.addChild(back);
    
            addChild(container);
        } 
    
        private function goBack(e:Event):void
        {
            navigator.popView();
        }
    }
    

    Is there for example some best practices how to modify this code to have pages and components with the same sizes in portrait and landscape? On presentation buttons size always 150 width and height 45 and wil containers have stageWidth and stageHeight.

    Thank you if someone could help with this problem

    Hello

    Try listening to a shift in focus screen with this code:

    stage.addEventListener(Event.RESIZE, onResizeHandler, false, 0, true);
    

    You can only change the width/height of your components to the event based on the width/height of the floor.

    I will guard against specifying specific sizes, if you want your code to work on devices BB10. I recommend using %'s.

    Kind regards

    Dustin

  • How many documents can contain 50 GB of storage iCloud?

    I think to upgrade my storage iCloud to plan.99 $50 GB and I was wondering how many documents (Pages, Numbers, Keynote, Word, Exel, Powerpoint) that will contain.  I tried Bing and Google to get the answer, but so far they have been no help.  I would like to just a detroit direct answer to my question.  If someone could help me with this I would be very happy, thank you.

    Unfortunately this is not something that can be easily or accurately answered, as the number of documents, you can place in the 50 GB would be directly related to the file size of the combined documents.   Its like asking how many pounds you can put in a box of some dimensions? Well its going to depend on the size of the books.

    If you have documents, what size of file is about 5 MB (megabytes) you could probably get about 10 000 these documents in 50 GB. But if you have files of 10 MB (presentations, large spreadsheets etc...)  Then you would be able to adapt the 5 000 files instead.

    Keynote and PowerPoint presentations are usually larger than text documents.

  • Nexus 1000v and vSwitch best practices

    I am working on the design of our vDS Nexus 1000v for use on HP BL490 G6 servers. 8 natachasery is allocated as follows:

    vmnic0, 1: management of ESXi, VSM-CTRL-PKT, VSM - MGT

    vmnic2, 3: vMotion

    vmnic4, 5: iSCSI, FT, Clustering heartbeats

    vmnic6, 7: data server and Client VM traffic

    Should I migrate all the natachasery to 1000v vDS, or should I let vmnic 0.1 on a regular vSwitch and others migrate to the vDS? If I migrate all the natachasery at the very least I would designate vmnic 0.1 as system so that traffic could elapse until the MSM could be reached. My inclination is to migrate all the natachasery, but I've seen elsewhere on comments in forums that the VSM associated networks and, possibly, the console ESX (i) are better let off of the vDS.

    Thoughts?

    Here is a best practice-how-to guide specific to 1000v & VC HP might be useful.

    See you soon,.

    Robert

  • Best practices... How many cards?

    Hey guys,.

    We are currently adding 2 new hosts (HP BL460c G8) to our cluster 4 hosts (HP BL460c G7).  Guests have the following configurations:

    -12 cores (2 x Intel Xeon 6 cores)

    -192 GB memory (G8 have 256 GB)

    -NIC 6 (2 + 4 with mezzanine)

    -2 x 146 GB mirror for OS

    -2 FC HBA

    I just upgraded vCenter and vSphere Update Manager to the latest version (5.1 U1).  We performed an average of 40 to 60 machines virtual host and never had a problem... CPU is always about 15 to 20 percent and memory around 50-60%.  Exchange and SQL are on physical servers.

    We use 4 NICs for VM traffic (4 Active VM (with 3 network interface cards) + 2 Exchange trade VMkernel (1 + 1 standby active network card) and 2 NICs for V-Motion and FT.)

    Recently asked me to see if we could remove 2 switches (Cisco 3020) between the speaker and have a viable environment with only 4 network cards.  The network guys tell me that traffic is really not so bad on 3020 s... We have occasional peaks but average traffic of the past year is generally quite low.  It comes with switches and nic 1 GB.

    I was thinking about the following config if we go up to 4 network cards:

    -2 active network for VM traffic maps (ideally an edge / one on the mezzanine)

    -1 map of active network for vMotion / Mgt of traffic with the other network adapter (used for FT) in standby mode

    -1 map of active network for FT / Mgt of traffic with the other network adapter (used for vMotion) in standby mode

    Am I missing something?  To be honest... I prefer to keep the 6 switches/NIC, thinking we're going to have traffic for her in the future but the management here wants to know if it is feasible with only 4 at the moment.

    Thanks in advance.

    So, you have certain requirements with forced here. The questions are to make us think, not necessarily to have a definitive answer.

    Management asked if a NIC (4) configuration is possible. So, let's look at the types of traffic, assuming that the redundancy is a requirement.

    Types of required traffic:

    • MGMT (VMkernel)
    • vMotion (VMkernel)
    • VM (Virtual Machine) - y (2) NICs required for bandwidth? If so, you might consider that NIC (3) will be necessary for redundant N + 1 on a NIC level. 10GbE starts to make a lot of sense in this scenario.

    Types of traffic in option:

    • Based on your statement in this thread, FT is not used yet. What is a bond? If this isn't the case, I'd take it off the table for this decision as long as the decision to use FT affects more than the NIC number. It affects the master VM, use of resources, backup schedule, etc.

    From the little information listed here, I agree with the proposed plan of NIC if 4 cards network is possible based on the investigation. (Of course many NICs gives more flexibility. 10GbE gives you more options.)

    VMNIC numbers here are just placeholders.

    • MGMT (active VMNIC0 / VMNIC1 sleep)
    • vMotion (active VMNIC1 / VMNIC0 sleep)
    • VM (VMNIC2 Active / Active VMNIC3)

    In addition, you had (4) hosts and you add (2). Your cluster increased only 50%. How many times do you get? Expect more work load in the next 6 to 12 months? I would say that you can certainly make the arguments for Enterprise more than license for a switching distributed alone, without forgetting the other features that you will receive.

    I hope this helps.

    Don't forget to mark this "correct" answer or 'useful', if you found it useful (you'll also points).

    Kind regards

    Harley stagnate

    VCP3/4, VCAP-DCD4/5, VCDX3/4/5

    Website: http://www.harleystagner.com

    Twitter: hstagner

  • HTML and CSS best practices for Eloqua?

    Hello Topliners community,

    My name is Ben and I am a Web Designer. Currently looking for guidance on best practices in HTML and CSS when you work with Eloqua. I am interested in best practices for email and landing pages.

    Thank you

    Ben

    For landing pages, you can use a bit of HTML, CSS, and Javascript like on any other page. For example, we use the Bootstrap on a couple of our Eloqua landing pages.

    Support for HTML and CSS is much more limited. It is one of the best resources I've seen for CSS support:

    http://www.campaignmonitor.com/CSS/

  • Best practices for the webinar Landing Pages

    We are developing a landing page that hosts several seminars online and want to get an idea of how others have done it.  Here's our scenario:

    PLAN:

    We push an email highlighting a webinar.  Clients fill out the form for this specific webinar and for sending the email with the link, the landing page is redirected to a list of other webinars to choose (previously registered or not).

    QUESTIONS RELATING TO THE:

    Did anyone done this before? How to follow Webinars a person clicks - through? There must be a better way than to have a person to submit a form to watch/attend each webinar.

    Also, can you do activity driven or landing page upside DOWN so that it lists only webinars which it has not already chosen or read?

    Can't wait to hear your best practices! Thanks for sharing.

    Hi Julia,

    You have at least two options for the capture of submission of form to your visitors without them knowingly send a form:

    1. If your confirmation page is hosted in Eloqua, you can use the links send blind form to these other Webinars. There is an article on Topliners here on how to install this feature to write links, but it's actually the same with regard to links to landing pages: trigger actions multiple with a click-through email (via 'send blind form').

    2. use "gated forms. You can apply this technique on all the forms on your site - the visitor will have to submit the form to get the first active, but each subsequent active form is hidden (a concept similar to sending blind form, they just see a link). Generally speaking, customers chose to have a consultant Eloqua build the frame (you can easily maintain over time when you add new assets), or you can build it yourself by following the related step by step guide to this post Eloqua Artisan.

    With the help of a form submission to capture these clicks gives you the opportunity to enjoy all of these smart actions of processing steps and get a tracking more than just using a regular.

    For your second question regarding conditionalizing links so that only those that have not been visited show - I recommend you really against that. What happens if your visitor wants to go back to the link, how can they access it? Leave it to the browser and use different colors for non visited compared to visited links.

    Gaia

  • How many tabs can be defined on a page

    How many tabs can be defined on a page

    Assuming that you are referring to the page tab, 9 images you see are known as the tiles.

    I found 2 different extensions that allow to edit this page tab.

    https://addons.Mozilla.org/en-us/Firefox/addon/new-tab-tools/?src=search

    Choose a give it a trial.

  • All of a sudden I can't the plugin scan page opens. I get 'Plugin finding Service Error', regardless of how many times I try or wait. When I first opened it up yesterday, it was scanning, then it disappeared and I got the error message.

    I have opened the plugin scanning page several times before and did a few updated plugins recently, but yesterday I couldn't bring up the scan, I get "Plugin finding Service Error", who said "try again later". I think that what I've updated most recently was Flash (I think). No matter how many times I push him "try again" or close Firefox and the Web page, I still have the error and get nowhere!

    It is this page that you are trying to access - https://www.mozilla.com/en-US/plugincheck/

    I just checked and the site load OK. Try to empty the cache and try again, it can load the cache error message. For more information, see How do I clear the cache of Firefox.

  • Best practices on how to code to the document?

    Hello

    I tried to search the web tutorials or examples, but could not get to anything. Can anyone summarize some of their best practices in order to document the LabVIEW code? I want to talk about a quite elaborate program, built with a state machine approach. It has many of the Subvi. Because it is important, that other people can understand my code, I guess that the documentation is quite large, but NEITHER has yet a tutorial for it. Maybe a suggestion ?

    Thank you for your time! This forum has been a valuable Companion already!

    Giovanni

    PS: I'm using LabVIEW 8.5 btw

    Giovanni,

    Always:

    Fill in the "Documentation" in the properties of 'VI '.

    Add description to the controls of its properties

    Long lines label

    Label algorithm, giving descriptions

    Any code that can cause later confusion of the label.

    Use the name bundle when clusters

    Add a description tag in loops and cases. Describing the intention of the loop/case

    Follow the good style guide as will make reading easy and intuitive vi.

    I'm sure there are many others I can't think...

    I suggest you to buy "LabVIEW style book", if you follow what this book teaches you will produce good code that is easy to maintain.

    Kind regards

    Lucither

  • When I print a document, I would like to see the ToolTip that appears, as to what the printer, he went to and how many pages have been printed. How do I put on the taskbar?

    When I print a document, I would like to see the ToolTip that appears, as to what the printer, he went to and how many pages have been printed. How do I put on the taskbar?

    Hello

    Why are you trying to pin the window print on the taskbar?

    It is not possible to pin window print of the taskbar.

    The following article might be useful.
    Print notification messages do not appear when you print to a network printer
    http://support.Microsoft.com/kb/873147

  • LaserJet P1102w: History of how many pages each toner printed in web interface?

    Is it possible to find in the web interface for the printer, a story of when a new toner has been inserted, and how many pages it had printed upward? I know how to access this story, but from what I can tell, it only shows the current number of toner and the page.


    HP LaserJet p1102w

    Hi @paulri,

    I understand that you want to know the history of how many pages have been printed of each toner. I'd love to help you.

    You can print a Configuration report to get the total number of pages printed from the printer, but not individual toners.

    Printing a Configuration Page. Select the method two.

    Feel free to click on the button under the thumbs up if it helps.

    Good day!
    Thank you.

Maybe you are looking for