Bootstrap and the long dead art of SEO

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • pinkz
    Mr 1%
    • May 2005
    • 1397

    #1

    Tech Bootstrap and the long dead art of SEO

    Using the visible/hidden css for bootstrap to hide or show content thus:

    <div class=" col-xs-12 visible-xs">
    TITLE
    <iframe 1>
    same descriptive content
    </div>

    <div class="col-xs-12 hidden-xs">
    TITLE
    <iframe 2>
    same descriptive content
    </div>

    Would this be considered as duplicate content and bad seo practice?

    If so and I changed the title and description on one of the div's would this then be considered for some other penalty by the powers that spider?

    Looking for the best solution to a responsive design, your opinions are welcome. Flame on!
    $$$$ Video Secrets $$$$
  • JD
    Too lazy to set a custom title
    • Sep 2003
    • 22651

    #2
    Depends on the overall amount of duplicate text. If that block of text is 1500 words... if that block is 50 words and a link

    Comment

    • Best-In-BC
      Confirmed User
      • Jun 2002
      • 9509

      #3
      Lost art ? may be I should seak employment, LOL
      Vacares - Web Hosting, Domains, O365, Security & More
      Unparked domains burning a hole in your pocket? 5 Simple Ways to Make Easy $$$ from Unused Domains

      Comment

      • Manfap
        Confirmed User
        • Jan 2013
        • 2626

        #4
        Manipulate the DOM with jquery via media quieres.

        https://css-tricks.com/enquire-js-me...in-javascript/

        Comment

        • pinkz
          Mr 1%
          • May 2005
          • 1397

          #5
          Originally posted by Manfap
          Manipulate the DOM with jquery via media quieres.

          https://css-tricks.com/enquire-js-me...in-javascript/
          this might just work, thanks
          $$$$ Video Secrets $$$$

          Comment

          • Miguel T
            ♦ Web Developer ♦
            • May 2005
            • 12470

            #6
            Or using PHP could even be better...
            https://code.google.com/p/php-mobile-detect/

            Full Stack Webdeveloper: HTML5/CSS3, jQuery, AJAX, ElevatedX, NATS, MechBunny, Wordpress

            Comment

            • StinkyPink
              It's all goooood.
              • Aug 2009
              • 1591

              #7
              From the jquery page...

              Event Handling

              Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.

              Code:
              1 var hiddenBox = $( "#banner-message" );
              2   $( "#button-container button" ).on( "click", function( event ) {
              3   hiddenBox.show();
              4 });
              Not sure if this has anything to do with anything. I just literally was looking at it when I read the thread.

              Comment

              • pinkz
                Mr 1%
                • May 2005
                • 1397

                #8
                Originally posted by AbsolutePorn
                Or using PHP could even be better...
                https://code.google.com/p/php-mobile-detect/
                I have no knowledge of PHP so not an option for me.

                Originally posted by StinkyPink
                From the jquery page...

                Event Handling

                Show the #banner-message element that is hidden with display:none in its CSS when any button in #button-container is clicked.

                Code:
                1 var hiddenBox = $( "#banner-message" );
                2   $( "#button-container button" ).on( "click", function( event ) {
                3   hiddenBox.show();
                4 });
                Not sure if this has anything to do with anything. I just literally was looking at it when I read the thread.
                this looks like it requires a user to click on a button to show the content, not what I am looking for, thanks all the same tho.
                $$$$ Video Secrets $$$$

                Comment

                Working...