Bcodedglobal

Categories
    • banking 1
    • Blogger Tips 12
    • Blogging 6
    • Blogging tips 10
    • codings 11
    • downloads 1
    • earnings 2
    • educational 3
    • games 1
    • general 4
    • hacking 2
    • Hacking Tips 2
    • how to 19
    • HTML 8
    • html/css 2
    • ict 2
    • info 11
    • JavaScript's 5
    • kalilinux 2
    • Malware 1
    • Mobile 1
    • PC tips 2
    • Php/laravel 1
    • scripts 1
    • seo tutorials 1
    • setoolkiit 2
    • Social media 1
    • software 6
    • solutions 3
    • tech 2
    • tutorials 24
    • updates 9
    • vpn 3
    • Webdesign 3
    • windows 5
Dark
Contact Us
ProfilMain Page
  • About
  • Sitemap
  • Disclaimer
  • Privacy Policy

Labels : html/css

Views Style:
How to disable copy content in blogspot/Wordpress site

How to disable copy content in blogspot/Wordpress site

html/css No comments
Web design tutorials phase 1 html and css for beginners

Web design tutorials phase 1 html and css for beginners

general 1 comment
Load more posts

PopularPosts

  • Ultra surf security vpn chrome extension and Mozilla addons download
    Ultra surf security vpn chrome extension and Mozilla addons download
  • XBOX 360 Controller emulator v3.0 for PC games using XINPUT.
    XBOX 360 Controller emulator v3.0 for PC games using XINPUT.
  • Tor browser download for windows latest updated version 2018
    Tor browser download for windows latest updated version 2018
  • 25 To Life Free Download PC Game Full setup and exe
    25 To Life Free Download PC Game Full setup and exe
  • How to make Usb Trojan malware from scratch full details!
    How to make Usb Trojan malware from scratch full details!
  • How to disable copy content in blogspot/Wordpress site
    How to disable copy content in blogspot/Wordpress site
  • Web design tutorials phase 1 html and css for beginners
    Web design tutorials phase 1 html and css for beginners
  • Download Free MINER v1.0 – Cloud Mining Platform PHP Scripts
    Download Free MINER v1.0 – Cloud Mining Platform PHP Scripts
  • effective method to Remain 100% Anonymous on Whoer.net's Home Page
    effective method to Remain 100% Anonymous on Whoer.net's Home Page
  • How To Install websploit On Kali Linux 2017.1 from beginners to pro
    How To Install websploit On Kali Linux 2017.1 from beginners to pro
Email Subscription

Ads

Mobile links

DONATION BOX!

DONATIONS!! ��
We are all about giving the power of knowledge to each and every cyber security enthusiast around the globe.We will be using your donations for maintenance and development of all the current and future articles. Your Donation is a great investment in our Non-Profit organization.Thanks,

Mobile leaderboard

f

Desktop big

CONNECT US!

How to disable copy content in blogspot/Wordpress site

  • Get link
  • Facebook
  • X
  • Pinterest
  • Email
  • Other Apps
Oleh Bcoded - 10/16/2018 02:16:00 am
It'll truly disappoints, when you discover your blog content distributed in some different sites as their own. We can't totally obstruct these sort of taking however we can make it harder to accomplish. Before, we regularly go for javascript arrangement yet we can do it css as well.

All in all, 'client select' property in css will be a decent decision however every seller included their own prefix execution. So to influence it as cross program arrangement, to infuse underneath css in a component style.

 Objectives
 -webkit-touch-callout: none;
 -webkit-user-select: none;
 -khtml-user-select: none;
-moz-user-select: none;
 -ms-user-select: none;
user-select: none;

 Example
Your content
The below code in red should be placed directly to the content you want to disable copy and paste on, while making your post, navigate to html of the post and not the compose part, and paste this code.

<div class='disable-copy'>Your content</div>

Your content follows , after your content then close the div </>

Blogger users click here to read more about disabling copy and paste content

 Secondly : before this code works, you have to embed the css to your blogspot template !! Use the below methods!! . Above method works for Wordpress too!! Just copy the code and put in your css section and you are good to go.

 Go to Blogger -> Dash board  Click on Drop Down Menu -> Template Backup your template Then click on Edit HTML -> Proceed Find "]]></b:skin>" using ctrf + f Paste below code above it:

.disable-copy{
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}

 !! You can equally disable posts in block quote through this method!! Use this css and paste after the above code

. blockquote{-webkit-touch-callout: none;-webkit-user-select: none;-khtml-user-select: none; -moz-user-select: none;-ms-user-select: none;user-select: none;}

Cheers!!! Use the comment section to get help direct from admin!

More solid and stronger methods loading!! We are working on the css codes stay tuned and bookmark our website

Read more
Post a Comment
Nhãn : html/css tutorials Webdesign

Web design tutorials phase 1 html and css for beginners

  • Get link
  • Facebook
  • X
  • Pinterest
  • Email
  • Other Apps
Oleh Bcoded - 10/15/2018 01:53:00 pm

Is It hard to Learn?

Many books that teach HTML and CSS resemble dull manuals. To make it easier for you to learn, we threw away the traditional template used by publishers and redesigned this tutorial from scratch.
I've focussed on the code you need to use 90% of the time and omitted the code that you would rarely see even if writing websites is your full time job. By the end of the tutorials, if you come across the other 10% you will be able to Google it to find out what it means quickly and easily.

I have also added practical information on topics I am commonly asked about, such as how to prepare images, audio and video for the web, how to approach the design and build of a new site, how to improve your rankings in search engines (SEO), and how to use Google Analytics to learn about visitors to your site.

At work, when people look at my screen and see it full of code, it's not unusual to get a comment about it looking very complicated or how clever I must be to understand it. The truth
is, it's not that hard to learn how to write web pages and read
the code used to create them; you certainly don't have to be a "programmer."

Understanding HTML and CSS can help anyone who works with the web; designers can create more attractive and usable sites, website editors can create better content, marketers can communicate with their audience more effectively, and managers can commission better sites and get the best out of their teams.

1: HTML

We will spend the first chapter looking at how HTML is used to create web pages. You will see that you start by writing down the words you want to appear on your page. You then add tags or elements to the words so that the browser knows what is a heading, where a paragraph begins and ends, and so on.

The rest of this section introduces the tags you have at your disposal to create web pages, grouped into chapters on: text, lists, links, images, tables, forms, video audio and flash, and miscellaneous elements.

I should warn you that the examples in the first nine chapters are not exciting to look at, yet they are the foundation of every web page. The following chapters on CSS will show you how to make your pages look a lot more interesting.

2: css

We start this section with a chapter that explains how CSS uses rules to enable you to control the styling and layout of web pages. We then go on to look at the wide variety of CSS properties you can use in your CSS rules.

 These properties generally fall into one of two categories: Presentation: How to control things like the color of text, the fonts you want to use and the size of those fonts, how to add background colors to pages (or parts of a page), and how to add background images.
Layout: How to control where the different elements are positioned on the screen. You will also learn several techniques that professionals use to make their pages more attractive.
Read more
1 comment
Nhãn : general html/css Webdesign
Older Posts Home
Subscribe to: Posts (Atom)

ARCHIVE

  • November 20163
  • December 201612
  • January 20178
  • February 20172
  • September 20181
  • October 20189
  • December 20181
  • July 20191
  • December 20193

CONNECT US!

apple inc

PAGES

  • Home
ads here
Bcodedglobal © 2019