Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums. You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today! If you have any problems with the registration process or your account login, please contact us. |
|
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed. |
|
Thread Tools |
03-04-2015, 07:59 AM | #1 |
Mr 1%
Industry Role:
Join Date: May 2005
Location: Nomad
Posts: 1,397
|
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 $$$$ |
03-04-2015, 11:17 AM | #2 |
Too lazy to set a custom title
Industry Role:
Join Date: Sep 2003
Posts: 22,651
|
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
|
03-04-2015, 11:43 AM | #3 |
Confirmed User
Join Date: Jun 2002
Posts: 9,506
|
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 |
03-04-2015, 12:36 PM | #4 |
Confirmed User
Industry Role:
Join Date: Jan 2013
Posts: 2,608
|
Manipulate the DOM with jquery via media quieres.
https://css-tricks.com/enquire-js-me...in-javascript/ |
03-05-2015, 05:52 AM | #5 | |
Mr 1%
Industry Role:
Join Date: May 2005
Location: Nomad
Posts: 1,397
|
Quote:
__________________
$$$$ Video Secrets $$$$ |
|
03-05-2015, 10:32 AM | #6 |
♦ Web Developer ♦
Industry Role:
Join Date: May 2005
Location: Full-Stack Developer
Posts: 12,467
|
Or using PHP could even be better...
https://code.google.com/p/php-mobile-detect/ |
03-05-2015, 10:49 AM | #7 |
It's all goooood.
Industry Role:
Join Date: Aug 2009
Location: The Hoe Stroll
Posts: 1,590
|
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 }); |
03-05-2015, 12:07 PM | #8 | ||
Mr 1%
Industry Role:
Join Date: May 2005
Location: Nomad
Posts: 1,397
|
Quote:
Quote:
__________________
$$$$ Video Secrets $$$$ |
||