How to use a tag in more than one pages












-3















I am using a nav tag in index page and also want to use that in second page but I want to remain just one same css file. Now the problem is that if I will change .nav styling in css file for second page then it will be change in index page.
Should I make separate css files for every page or is there any other solution as well?



I tried to give id to nav in second html page to make it different in the css file but it is not making changing in second page nav.





&nbsp&nbsp&nbsp


one

two

three



It should be change in the second page.










share|improve this question



























    -3















    I am using a nav tag in index page and also want to use that in second page but I want to remain just one same css file. Now the problem is that if I will change .nav styling in css file for second page then it will be change in index page.
    Should I make separate css files for every page or is there any other solution as well?



    I tried to give id to nav in second html page to make it different in the css file but it is not making changing in second page nav.





    &nbsp&nbsp&nbsp


    one

    two

    three



    It should be change in the second page.










    share|improve this question

























      -3












      -3








      -3








      I am using a nav tag in index page and also want to use that in second page but I want to remain just one same css file. Now the problem is that if I will change .nav styling in css file for second page then it will be change in index page.
      Should I make separate css files for every page or is there any other solution as well?



      I tried to give id to nav in second html page to make it different in the css file but it is not making changing in second page nav.





      &nbsp&nbsp&nbsp


      one

      two

      three



      It should be change in the second page.










      share|improve this question














      I am using a nav tag in index page and also want to use that in second page but I want to remain just one same css file. Now the problem is that if I will change .nav styling in css file for second page then it will be change in index page.
      Should I make separate css files for every page or is there any other solution as well?



      I tried to give id to nav in second html page to make it different in the css file but it is not making changing in second page nav.





      &nbsp&nbsp&nbsp


      one

      two

      three



      It should be change in the second page.







      html css bootstrap-4






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 1 at 14:39









      Sunny KingSunny King

      1




      1
























          3 Answers
          3






          active

          oldest

          votes


















          2














          You can add a class to your element and reference that particular class. For example:



          <nav class="nav-style-1">...</nav>
          <nav class="nav-style-2">...</nav>


          .nav-style-1 { your styles ... }
          .nav-style-2 { your styles ... }


          Hope that helped!






          share|improve this answer































            0














            My recommendation is, if you want to continue with same CSS file, you can add id property to each navbar and use id to give them specific CSS attributes.






            share|improve this answer































              0














              People doing wordpress themes have the same requirement as you. Their solution is to add an id tag to the body element.



              Their CSS rules look something like ...



              #page1 .nav {
              ... your nav css rules for page 1 ...
              }
              #page2 .page2 {
              ... add a style to all items on page two with the class of page2.
              }
              #page3 .page3 {
              ... custom style that appears only on page3 ...
              }


              The HTML



              <body id="page1">

              <!-- menu -->
              <ul class="menu">
              <li class="homepage">
              <li class="page1">
              <li class="page2">
              <li class="page3">
              </ul>


              Rule [#page1 .page1] only has an effect when .page1 is a and element in #page1 which only happens on page1. So I can highlight the menu item that corresponds to the page which is loaded.






              share|improve this answer























                Your Answer






                StackExchange.ifUsing("editor", function () {
                StackExchange.using("externalEditor", function () {
                StackExchange.using("snippets", function () {
                StackExchange.snippets.init();
                });
                });
                }, "code-snippets");

                StackExchange.ready(function() {
                var channelOptions = {
                tags: "".split(" "),
                id: "1"
                };
                initTagRenderer("".split(" "), "".split(" "), channelOptions);

                StackExchange.using("externalEditor", function() {
                // Have to fire editor after snippets, if snippets enabled
                if (StackExchange.settings.snippets.snippetsEnabled) {
                StackExchange.using("snippets", function() {
                createEditor();
                });
                }
                else {
                createEditor();
                }
                });

                function createEditor() {
                StackExchange.prepareEditor({
                heartbeatType: 'answer',
                autoActivateHeartbeat: false,
                convertImagesToLinks: true,
                noModals: true,
                showLowRepImageUploadWarning: true,
                reputationToPostImages: 10,
                bindNavPrevention: true,
                postfix: "",
                imageUploader: {
                brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
                contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
                allowUrls: true
                },
                onDemand: true,
                discardSelector: ".discard-answer"
                ,immediatelyShowMarkdownHelp:true
                });


                }
                });














                draft saved

                draft discarded


















                StackExchange.ready(
                function () {
                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996347%2fhow-to-use-a-nav-tag-in-more-than-one-pages%23new-answer', 'question_page');
                }
                );

                Post as a guest















                Required, but never shown

























                3 Answers
                3






                active

                oldest

                votes








                3 Answers
                3






                active

                oldest

                votes









                active

                oldest

                votes






                active

                oldest

                votes









                2














                You can add a class to your element and reference that particular class. For example:



                <nav class="nav-style-1">...</nav>
                <nav class="nav-style-2">...</nav>


                .nav-style-1 { your styles ... }
                .nav-style-2 { your styles ... }


                Hope that helped!






                share|improve this answer




























                  2














                  You can add a class to your element and reference that particular class. For example:



                  <nav class="nav-style-1">...</nav>
                  <nav class="nav-style-2">...</nav>


                  .nav-style-1 { your styles ... }
                  .nav-style-2 { your styles ... }


                  Hope that helped!






                  share|improve this answer


























                    2












                    2








                    2







                    You can add a class to your element and reference that particular class. For example:



                    <nav class="nav-style-1">...</nav>
                    <nav class="nav-style-2">...</nav>


                    .nav-style-1 { your styles ... }
                    .nav-style-2 { your styles ... }


                    Hope that helped!






                    share|improve this answer













                    You can add a class to your element and reference that particular class. For example:



                    <nav class="nav-style-1">...</nav>
                    <nav class="nav-style-2">...</nav>


                    .nav-style-1 { your styles ... }
                    .nav-style-2 { your styles ... }


                    Hope that helped!







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Jan 1 at 14:41









                    webkitfanzwebkitfanz

                    3851322




                    3851322

























                        0














                        My recommendation is, if you want to continue with same CSS file, you can add id property to each navbar and use id to give them specific CSS attributes.






                        share|improve this answer




























                          0














                          My recommendation is, if you want to continue with same CSS file, you can add id property to each navbar and use id to give them specific CSS attributes.






                          share|improve this answer


























                            0












                            0








                            0







                            My recommendation is, if you want to continue with same CSS file, you can add id property to each navbar and use id to give them specific CSS attributes.






                            share|improve this answer













                            My recommendation is, if you want to continue with same CSS file, you can add id property to each navbar and use id to give them specific CSS attributes.







                            share|improve this answer












                            share|improve this answer



                            share|improve this answer










                            answered Jan 1 at 15:16









                            Samed KahyaogluSamed Kahyaoglu

                            84




                            84























                                0














                                People doing wordpress themes have the same requirement as you. Their solution is to add an id tag to the body element.



                                Their CSS rules look something like ...



                                #page1 .nav {
                                ... your nav css rules for page 1 ...
                                }
                                #page2 .page2 {
                                ... add a style to all items on page two with the class of page2.
                                }
                                #page3 .page3 {
                                ... custom style that appears only on page3 ...
                                }


                                The HTML



                                <body id="page1">

                                <!-- menu -->
                                <ul class="menu">
                                <li class="homepage">
                                <li class="page1">
                                <li class="page2">
                                <li class="page3">
                                </ul>


                                Rule [#page1 .page1] only has an effect when .page1 is a and element in #page1 which only happens on page1. So I can highlight the menu item that corresponds to the page which is loaded.






                                share|improve this answer




























                                  0














                                  People doing wordpress themes have the same requirement as you. Their solution is to add an id tag to the body element.



                                  Their CSS rules look something like ...



                                  #page1 .nav {
                                  ... your nav css rules for page 1 ...
                                  }
                                  #page2 .page2 {
                                  ... add a style to all items on page two with the class of page2.
                                  }
                                  #page3 .page3 {
                                  ... custom style that appears only on page3 ...
                                  }


                                  The HTML



                                  <body id="page1">

                                  <!-- menu -->
                                  <ul class="menu">
                                  <li class="homepage">
                                  <li class="page1">
                                  <li class="page2">
                                  <li class="page3">
                                  </ul>


                                  Rule [#page1 .page1] only has an effect when .page1 is a and element in #page1 which only happens on page1. So I can highlight the menu item that corresponds to the page which is loaded.






                                  share|improve this answer


























                                    0












                                    0








                                    0







                                    People doing wordpress themes have the same requirement as you. Their solution is to add an id tag to the body element.



                                    Their CSS rules look something like ...



                                    #page1 .nav {
                                    ... your nav css rules for page 1 ...
                                    }
                                    #page2 .page2 {
                                    ... add a style to all items on page two with the class of page2.
                                    }
                                    #page3 .page3 {
                                    ... custom style that appears only on page3 ...
                                    }


                                    The HTML



                                    <body id="page1">

                                    <!-- menu -->
                                    <ul class="menu">
                                    <li class="homepage">
                                    <li class="page1">
                                    <li class="page2">
                                    <li class="page3">
                                    </ul>


                                    Rule [#page1 .page1] only has an effect when .page1 is a and element in #page1 which only happens on page1. So I can highlight the menu item that corresponds to the page which is loaded.






                                    share|improve this answer













                                    People doing wordpress themes have the same requirement as you. Their solution is to add an id tag to the body element.



                                    Their CSS rules look something like ...



                                    #page1 .nav {
                                    ... your nav css rules for page 1 ...
                                    }
                                    #page2 .page2 {
                                    ... add a style to all items on page two with the class of page2.
                                    }
                                    #page3 .page3 {
                                    ... custom style that appears only on page3 ...
                                    }


                                    The HTML



                                    <body id="page1">

                                    <!-- menu -->
                                    <ul class="menu">
                                    <li class="homepage">
                                    <li class="page1">
                                    <li class="page2">
                                    <li class="page3">
                                    </ul>


                                    Rule [#page1 .page1] only has an effect when .page1 is a and element in #page1 which only happens on page1. So I can highlight the menu item that corresponds to the page which is loaded.







                                    share|improve this answer












                                    share|improve this answer



                                    share|improve this answer










                                    answered Jan 1 at 15:36









                                    WayneWayne

                                    3,85311723




                                    3,85311723






























                                        draft saved

                                        draft discarded




















































                                        Thanks for contributing an answer to Stack Overflow!


                                        • Please be sure to answer the question. Provide details and share your research!

                                        But avoid



                                        • Asking for help, clarification, or responding to other answers.

                                        • Making statements based on opinion; back them up with references or personal experience.


                                        To learn more, see our tips on writing great answers.




                                        draft saved


                                        draft discarded














                                        StackExchange.ready(
                                        function () {
                                        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53996347%2fhow-to-use-a-nav-tag-in-more-than-one-pages%23new-answer', 'question_page');
                                        }
                                        );

                                        Post as a guest















                                        Required, but never shown





















































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown

































                                        Required, but never shown














                                        Required, but never shown












                                        Required, but never shown







                                        Required, but never shown







                                        Popular posts from this blog

                                        MongoDB - Not Authorized To Execute Command

                                        Npm cannot find a required file even through it is in the searched directory

                                        in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith