Hover effects for images using pure CSS3. Nine Simple CSS3 Animation Examples

If you like the effect, then you can simply copy ready code and use it!

Bring your website to life!

Different hover effects can add freshness to your website pages. Previously, for any effect you had to deal with javascript, but today, after the advent of CSS3 technology, everything can be done without using javascript.

Today's examples are all implemented and optimized for new modern browsers, and will definitely work in them (for example, in Mozilla or browsers of the WebKit family). We can't assure you that it works in IE, but most latest versions the effects will definitely work as they should. But do not forget that for each effect an attractive rollback option has been prepared in case the browser still does not support the effect.

01. Zoom

Demo: For viewing

This effect is very easy to implement and can be done in several ways. We used a method where a margin parameter is added to each image, and then, when hovering the mouse cursor, this parameter is removed. Let's say the margin setting starts at 15 pixels, and on hover it becomes 2 pixels, which causes the image to appear to jump. You can also simply use this effect with text, even if the links are positioned vertically rather than horizontally.

The transition here can be set at your discretion, and the effect will also be attractive without any transition. For example, we made the effect a little smooth, which we thought would add some flair to the effect.

Bump Up Effect CSS Code

Ex1 img(
border: 5px solid #ccc;
float: left;
margin: 15px;
-webkit-transition: margin 0.5s ease-out;
-moz-transition: margin 0.5s ease-out;
-o-transition: margin 0.5s ease-out;
}

Ex1 img:hover (
margin-top: 2px;
}
02. Stack & Grow


Demo: For viewing

The author of this effect apparently wanted to achieve some kind of lava lamp effect, since when you hover the mouse cursor over the list of links, each image slowly expands and then returns to its original size.

For implementation here, images of 400x133 pixels were used. They were then resized to 300x100 pixels using CSS, and expanded on mouseover. Since in the example the entire list is center aligned, the new size of the images refracted the entire alignment. This problem can be solved by setting negative margins to half the width of enlarged images.

CSS code for Stack & Grow

/*Example 2*/
#container (
width: 300px;
margin: 0 auto;
}

#ex2 img(
height: 100px;
width: 300px;
margin: 15px 0;
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
}

#ex2 img:hover (
height: 133px;
width: 400px;
margin-left: -50px;
}
03. Fade Text in


Demo: For viewing

Here the author wanted to create something like an event javascript type, when you hover over one item and the effect appears on another. Here the text and image were taken and then placed in a separate left aligned div. Next, the parameters color: transparent and line-height: 0px were added to the div. This allowed us to place the text along the top edge of the div and hide it altogether.

To make the text appear again, we simply change the color and line height. When you hover over the image, the text appears again. Very funny and easy effect.

Fade Text In Effect CSS Code

#ex3 (
width: 730px;
height: 133px;
line-height: 0px;
color: transparent;
font-size: 50px;
font-family: "Helvetica Neue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 300;
text-transform: uppercase;

}

#ex3:hover (
line-height: 133px;
color: #575858;
}

#ex3 img(
float: left;
margin: 0 15px;
}
04. Crooked Photo


Demo: For viewing

This effect is very simple, but it would be great for a thumbnail gallery. To start, you need to create a grid of images and then rotate the images when you hover over them, which creates an attractive effect.

There are a lot of new ones to use here. CSS values, so it’s worth considering also the rollback option for more earlier versions browsers. Our gallery will use transitions, transformations, and block shadows, however, at your request. Transformation will be responsible for rotating the image, and transitions will be responsible for the soft and smooth effect.

This is where you can use pseudo selectors.

CSS code for Crooked Photo

#ex4 (
width: 800px;
margin: 0 auto;
}

#ex4 img (
margin: 20px;
border: 5px solid #eee;
-webkit-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
box-shadow: 4px 4px 4px rgba(0,0,0,0.2);
-webkit-transition: all 0.5s ease-out;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}

#ex4 img:hover (
-webkit-transform: rotate(-7deg);
-moz-transform: rotate(-7deg);
-o-transform: rotate(-7deg);
}
05. Fade In and Reflect


Demo: For viewing

This effect is a little more difficult to implement, so we had to tinker with it a little to achieve a decent effect. The default image position is slightly transparent. Then, when you hover over the image, the transparency level is lowered and the image returns to its original appearance, along with a slight glow and reflection (WebKit browsers only).

Unfortunately, the reflection isn't exactly a transition, so it appears immediately even though the rest of the content appears in slow motion.

If you are confused about the CSS code for reflections, you can learn more about it in this article (David Walsh).

Fade In and Reflect CSS Code

#ex5 (
width: 700px;
margin: 0 auto;
min-height: 300px;
}

#ex5 img (
margin: 25px;
opacity: 0.8;
border: 10px solid #eee;

/*Transition*/
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;

/*Reflection*/
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.1)) );
}

#ex5 img:hover (
opacity: 1;

/*Reflection*/
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4)) );

/*Glow*/
-webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
-moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}
Conclusion

These 5 examples should be enough to inspire you to create something of your own. Remember that you can always experiment with ready-made examples and then tell us about them.

If you have come across other attractive effects somewhere on the net, then please tell us and other readers about it.

First of all, for those who are not yet completely in the subject or not at all in the subject, I will briefly explain what it is. This various types effects (pop-up captions, tooltips, smooth transitions, transformation, rotation, enlargement, displacement, etc., etc.) applied to website elements when hovering the mouse over them. These effects can be implemented using various jQuery plugins or pure .
Today I have prepared a large selection original hover effects for images created using CSS3, without connecting javascript libraries. About the advantages and disadvantages of implementing hover effects on pure CSS 3 I won’t, this is a different topic, just look at the examples, and if necessary, use the one you like on your website. All effects presented in the review are provided with a demo example and detailed documentation with source codes. The manuals are mostly in bourgeois language, but everything is more or less intuitive.

I would like to immediately draw your attention to the fact that all these examples will work correctly only in modern browsers that support CSS3 properties.

In order not to ruin the overall picture, I did not distort the names of effects with machine translation (with the exception of some), I left the original titles as the developer called them.

A very interesting effect when hovering over thumbnail images, using fine lines in design and typography. Several different types of effects for the appearance of image captions, soft and non-intrusive 3D transformations, and smooth transitions of pseudo-elements. Works only in modern browsers.

iHover is an impressive collection of pure CSS3 hover effects, with Bootstrap 3 support. Built on Scss CSS(file), easily modified by variables. The code is modular, there is no need to include the entire file. 30+ various effects in one package. Everything is pretty well documented and the effects are very easy to use. All you need to do is build the HTML markup correctly and connect CSS file to work.

Creates some simple yet stylish hover effects for image captions. The idea is to hover over the thumbnails to make the title, author's name, and contact buttons pop up. For some effects, 3D visual transformations are used.

A very simple transition effect, without any special bells and whistles, a completely round image in a frame, transforms by changing focus when hovering and that’s it.

Hover effects for thumbnails using CSS3

The developer positions his work as an example of an image gallery with transition effects when annotations (captions) appear on the thumbnails. Confident support declared modern browsers, including IE 9+. Of course, it’s difficult to call it a full-fledged gallery, but the effect of the appearance of signatures is quite interesting.

Next set CSS rules, to create impressive transformation effects when hovering over perfectly round thumbnails. The package contains 7 types of CSS3 transitions, very detailed documentation on configuration and use. The effects are supported by all modern browsers.

Rotating thumbnails on hover

A simple effect of rotating round miniatures when you hover the mouse cursor over them, about the same you can see on my blog, in the announcements of posts on the main page. Implemented with a couple of lines of css code.

To translate it literally: “Sexual effect when hovering over “. Of course, you are unlikely to notice anything so sexy in this effect, unless you have a wild imagination, but the effect is interesting in its own way and is worth paying attention to.

Five different effects for images when you hover over them. Pop-up signatures in three variations, curtains in the form of changing the degree of transparency and rotation with horizontal movement.

4 Types of animation effects for image captions, implemented exclusively using CSS3. Different positions when appearing and transition effects, quite a standard design. To understand how animation works, take a look at source code I didn’t find any demo pages or separate documentation.

Miniature galleries arranged in a grid with various effects for the appearance of signatures, rotation, development, pop-up, etc. The documentation on use and configuration is quite sparse, but if you really want to, you can figure it out.

This effect is nothing special, a banal change in the brightness of images when hovering, except that animation elements have been added. You will have to figure out the details of the implementation yourself by laying out the source code of the demo.

Another set of 10 hover effects for images, various modifications of thumbnails when hovering, enlargement, rotation, rotation, darkening, etc.

Various frame animation effects around images look quite attractive, there is a detailed manual for setting up and using it.

Original CSS3 hover effects used for the effective appearance of image thumbnail captions when hovered over. The CSS ruleset includes 10 different effects that you can use individually to different pictures. The effects are truly impressive, especially considering that it was all done using CSS3. Detailed Guide, will help you figure out what's what.

The idea is to create an SVG that is a background shape for some text and turns into another shape on mouseover. In this way you can make many different options, in the example, three types of transition effects are shown. Dignity using SVG is that we can resize the form to match the size of the parent container.

Sliding images

The essence this effect is that the image is moved up and down to reveal the caption. If you work with the style parameters, I think you can achieve some pretty nice effects, but by default, everything looks very simple.

With this effect everything is simple, captions for pictures slide out at the top right or bottom left, in the form of a ribbon with a translucent dark background, everything is very simply reformatted using css properties.

An interesting solution: the thumbnails are presented in a darkened form; when you hover over them, the images appear and the signature pops up on a light background.

The caption for the image appears from the corner and expands diagonally across the entire area of ​​the image.

Some more interesting solutions for implementing pop-up captions for image thumbnails. In the online editor, you can experiment with the parameters and achieve more impressive results.

A set of beautiful effects when hovering over thumbnails, various types of appearance and design of captions for pictures. Thin lines in contrast with a slightly darkened background create easy-to-read information blocks.

Bizarre shapes and a magnification effect combined with the animated effect of the appearance of captions for image thumbnails.

Wonderful effects of overlaying icons on image thumbnails in various variations of appearance. The example uses the (+) symbol outlined in a circle using border-radius: in CSS, you can also use icon fonts to make the pop-up panel more informative.

An example of creating a visual slide effect for displaying 3D captions for images using only CSS3 and HTML5.

6 Captions for pictures

6 Options for the appearance of pop-up image captions on hover using CSS3. Detailed lesson on implementation and configuration, sources available for downloading.

And finally, in the end, I can’t help but mention the simplest way to create a pop-up caption for a thumbnail using CSS3.

The post contains a selection of various effects and CSS animations, which can be useful in your work, and in addition will eliminate the need to constantly resort to JavaScript. The examples may not be the newest or most unusual, but in my opinion, they are useful.

1. CSS3 Clock with jQuery This clock is created using one of the main CSS3 tools - rotate and connecting the JQuery library.2. CSS Analog Clock More classic, analog clock. They are created using webkit transition and the transform CSS property. But in order for the time to correspond to the current one, you need JavaScript.

3. Rotating 3D cube Rotation and movement along the sides of the cube will be performed standard keys"up", "down", "left" and "right". The 3D figure itself is built using webkit-perspective, -webkit-transform and -webkit-transition.

4. Several retractable 3D cubes Here are already several 3D cubes using CSS3 and the transform and transition properties directly. Hovering the cursor over a cube causes it to move to the side, revealing text that is on the other side of the shape.

5. Accordion menu The effect of an “accordion menu” using pure CSS, where clicking on each line opens an additional window in the body of the list itself. Custom animation in WebKit-based browsers.

6. Parallax Scrolling with CSS This is an animated automatic parallax scrolling using CSS transitions based on WebKit. When you hover over the text box, the stars in the background begin to move smoothly to the side. The effect of flight is created.

7. The Matrix The cult film “The Matrix” is one of the best science fiction films. The example shows how to recreate approximately the same amazing animation (black screen with running numbers) in CSS3.

8. Dynamic Palaroids In this example, detailed description create animated photos based on CSS3 commands. When you click on an image, it enlarges and moves to the foreground.

9. Scaling Images In this example, images are simply enlarged on hover. A simple, but sometimes very useful effect.

10. JavaScript effects on CSS3 As an alternative to JavaScript, the post suggests seven effects on CSS3: various blocks that rotate, disappear, move out, grow, etc.

11. DJ Hero Virtual Records This post explains how to create spinning records. The rotation speed can be adjusted directly on the screen.

12. Sliding Vinyl The effect of sliding vinyl records is created using CSS3 and HTML transitions. Such animation brings a web page to life, adds originality to a standard album cover, etc.

13. Effects when hovering over a picture When you hover the cursor over an image, it can move to the side, spin, get smaller, transform from square to round, become blurry... In a word, pictures will change their properties in every possible way.

14. Rotating triangle When you click on the triangle, it starts to rotate.

15. Space The whole outer space, fit in CSS. This is an example of rotating layers (more noticeable when you zoom out in the browser).

16. “Las Meninas” in 3D Interesting CSS effect, with the help of which the famous painting by Diego Velazquez “Las Meninas” begins to appear three-dimensional.

17. CSS for Mac OS X At the bottom of the screen there is a set of main Mac OS X icons, which enlarge when hovered over. The effect adds dynamics to the site.

18. Drop-In Modals CSS3 effects and Drop-In Modals properties will help you create fast, animated and simple change modal windows.

19. Animating objects Transformation changes appearance element in the browser. Shown using the example of a rocket that “flies” from one end of the screen to the other. Move, rotate, etc. tools can be used.

20. Color Clock Color Clock is based on jQuery and CSS3. A similar effect will come in handy in the context of waiting for the completion time of some competition, voting, and the like.

21. Lightbox Gallery with jQuery and CSS3 This is a wonderful gallery that allows you to sort and arrange images in a selective order. For interactivity, the gallery uses JQuery, JQuery UI and JQuery plugin FancyBox. Lightbox supports the title and description of pictures, groups them and automatically arranges slides in a row.

22. “Elastic” previews Increases image previews on hover. Thus, when you click, the menu increases proportionally.

23. Dynamic Cards This example is a dynamic set of cards using HTML functions and CSS3.

24. JQuery Sliding Menu The example sliding menu is created using a combination of CSS3 and JQuery. When you hover over the image, a pop-up window with text appears.

25. CSS Tabs In the example, hovering the mouse over the tab headers causes the list below to change.

26. Fisheye menu This example demonstrates how to create a Fisheye menu using CSS and SVG animation. As an added bonus, a demo SVG is used in the IMG tag.

27. Dropdown Menu This type provides very convenient navigation through the main menu, thanks to the use of CSS3 transitions.

28. Titles from Star Wars Famous credits from Star Wars. HTML and CSS will be enough to run them.

29. More Fisheye effects on CSS Again, icons that increase on hover.

30. Animation using the “frame by frame” type Several demonstration options are possible.
In the first example, to ensure a frame change, you need to click on the image. Each click is one movement. The frames are repeated, creating a certain loop.
In the second example, to change frames, just move the cursor over the image. Accordingly, the animation speed will depend on the speed of the mouse movement.

31. Imperial walker AT-AT And again " Star wars" - This moving AT-AT walker is made using CSS3.

32. Another CSS “accordion” When you click on a row, the table expands.

33. Simple slide-out menu

40. Dropdown menu
Another option for a simple and nice drop-down menu using CSS.

Very often on websites you might come across changes or buttons on hover. A special pseudo-class:hover in CSS allows you to implement the task. Today we’ll look at some techniques that allow us to make this trick, and below we’ll publish a list of the most interesting of them (with brief descriptions/explanations). We will divide all options into:

These groups are very arbitrary, because many examples overlap and are universal, that is, they can be found when designing different objects.

Hover effect CSS styles is added to the right of the element like this:

a: hover ( color : red ; )

a:hover ( color: red; )

Most often, the mechanism is used specifically for links in order to change their color or add/remove underlining. However, it can also be specified for other blocks, buttons, texts, or used when creating.

button : hover ( background : rgba (0 , 0 , 0 , 0 ) ; color : red ; .my-picture : hover ( opacity : 0.5 ; filter : alpha(opacity= 50 ) ; )

button:hover ( background: rgba(0,0,0,0); color: red; ) .my-picture:hover ( opacity: 0.5; filter: alpha(opacity=50); )

Modern browsers equally correctly perceive the CSS hover effect on hover, although in older versions of IE 6 and below it only works for links. Plus, some sources said that this must be specified in the code.

By the way, when setting link styles, selectors can also be additionally used: link - for pages that have not yet been visited, :visited - for those where you have already been + :active determines the currently active address. It is important to place the hover effect in the CSS after :link and :visited if they exist.

Let's move from theory to practice. Below is a list useful materials and snippets - follow the links to view the sources.

Hover effects for buttons and links

As we said above, this is the most popular category of objects on the site where this technique is found. Here are some options on the topic.

Simple examples for buttons

Sullivan Buttons

The trick is that when you hover over different buttons, in addition to changing the background color, it also starts small animation with icons (each with its own).

CSS Icons on Hover

Selection of 5 simple options implementation of the task. In all cases, additional icons are used that appear to the right/left of the text or replace it.

Button Hover Effects

Compared to the previous example, these 12 trigger functions look much more interesting: both visually and in terms of code. Not without JS.

Nav Hovers

Several features that allow you to do something more unusual than with the basic text-decoration property. The button background is additionally filled with various visual effects.

Info on Hover

Tooltips functionality is currently supported in all browsers, but you can customize it to suit your needs. In the current example, the pseudo-class is triggered for the dfn tag, which looks stylish. The code is quite compact HTML + CSS.

Mana Button

One of the most original options hover effect in blocks - when hovering, it is like filling it with liquid. The implementation uses CSS, HTML and SVG. For certain website topics, this snippet will definitely be a godsend.

Hover effects for images 15 basic techniques

Despite the fact that the article was published quite a long time ago, the methods still work correctly. Here, probably, all possible standard transformations for graphics are collected: several types of zoom, rotation, blur, b/w, transparency, filters, shine, etc. Very useful material.

Beautiful hover effects images

A selection of 30 pleasant and smooth actions when hovering over a picture. Due to simple visual manipulations in the form of zoom and adding lines, a good complex impression is created. In some places the title is enlarged and the short description is tightened. Great option for a portfolio.

Barberpole Hover Animation

The animation is not complicated at first glance, but in the end it looks very cool and unusual.

CSS hover effects with direction detection

An excellent selection of snippets and codes on the topic can be found in the article from css-tricks.com. All these examples are united by the fact that during operation the location and direction of cursor movement is determined. This, in turn, allows you to create quite original reactions when hovering over page elements:

In many difficult decisions Javascript and jQuery for hover effects allow you to significantly diversify and improve the result.

Direction Aware Hover Goodness Direction Aware Tiles using clip-path Pure CSS

Find the rest of the tricks in the original article.

Animatism

This development includes more than 100 simple ways“animation” of images or objects when hovered. Using these functions you can implement different appearance of buttons, headings, texts, social icons etc. There are options with changing the display of pictures and translucent background overlays.

The link contains 7 CSS3 hover header effects - when, when hovering over an image, the user will see an information block with a title, brief description and a link to follow. This is not to say that the examples are very original, but they will definitely help diversify a static content project.

CSS Hover library Hover.css

The project, simply named Hover.css, contains a collection of CSS3 effects for links, buttons, blocks, etc. You can use ready-made code and/or add your own modifications to it. There is a lot of interesting stuff here: 2D/3D transformations, working with backgrounds and frames, shadows, icons. The solution is available in CSS, LESS and Sass formats.

Imagehover.css

Another library that sets hover effects for pictures - in free version you will find 44 transformation options (the premium set contains 5 times more). LESS and SCSS are also supported here, this file weighs only 19kb. The site has a page demonstrating all working examples. There is a lot on offer unique chips, which were not mentioned above.

The project includes more than 30 different techniques for round and square objects. All of them are quite original; there are practically no simple “single-element” actions in the form of a regular zoom/fly out. The task was implemented using pure CSS3 + HTML (plus Scss files included). Excellent compatibility with Bootstrap 3, documentation available.

Total. We hope these css hover effects when hovering over images, blocks, links and other page elements helped you understand this topic. You can implement the most successful solutions, in your opinion, on your websites - be it connecting a full-fledged library or simply integrating a small version of the code.

If you know any more interesting features and snippets, send URLs to them in the comments. And we will supplement the article in the future.

You have certainly seen on some sites a ban on using the right mouse button. This feature primarily combats those who want to steal your content. This measure will not protect you completely from theft, but it will completely protect you from manual copying. Other options.
I don't recommend turning it off right button mouse if you post materials intended for copying on your blog. These can be codes, scripts, culinary recipes, reference materials and more. Prohibition on copying in this case will turn visitors away from you, and your blog will become less useful to visitors. If plagiarism protection is important to you, then it is better to add your url at the end of the copy. Then you will be sure that if someone wants to publish something copied from you elsewhere on the Internet, the copy-pastor will be more likely to share a link to your blog.
This recipe is suitable for any website. All you need to do is paste the code on all pages of your blog:



In Blogger, add code to the HTML/Javascript gadget in the Design tab. If you are using one of the latest themes on your blog (Emporio, Contempo, Soho, Notable), then do not forget to activate the visibility of the widget (check the box next to “Visible to everyone”, “Show widget " HTML/JavaScript "”).
On Wordpress, add the code to the “Text” widget.

Author: Ivanova Natalya 2019-03-03

The holiday is approaching - International Women's Day. Let's prepare for it in advance. You can congratulate girls and women in an original way by using postcard services, about which we'll talk below.

You can use the same services that we used for. Ready-made postcard services Create a March 8 postcard online

Use the following services to create a postcard practically from scratch.

  • Canva is a well-known functional photo editor. Here you will find many templates. Registration required.
  • Printclick If you have your own business, then you can order a batch of postcards with your company logo and contacts. You can use the princlick postcard generator. Excellent promotion and inexpensive.
  • Crello is an editor that requires registration. Don't be scared English language, in the settings you can switch to Russian.
  • An online postcard is for those who have a well-developed imagination, since you will have to create a postcard from scratch.
  • Mumotiki - prepare beautiful picture, and you can add a congratulatory text here. By the way, if you just need to add text to a picture, then you can check out.
  • I hope that by using one of these generators, you will be able to adequately congratulate your ladies on March 8th!

    Author: Ivanova Natalya 2019-02-17

    Contents of the article:

    Google Plus The Google Plus platform did not live up to the hopes of the developers and will be completely removed on April 2, 2019. Albums associated with it will disappear along with it. Google Photos, authorization on sites with a Google Plus account will become unavailable. Already on February 4th it became unavailable function creating Google Plus profiles, channels and pages. If your account stored valuable content, then you can download backup copy.
    The changes will most affect bloggers who run their blogs on Blogspot. Some G+ widgets, G+ comments, and Google profile+. This is stated in the notification in the Blogger admin area:
    After the announcement of termination API work Google+, which is scheduled to launch in March 2019, will introduce a number of changes to Blogger's integration with Google+ on February 4th.
    Google+ Widgets. Blog designs will no longer support the +1 Button, Google+ Followers, and Google+ Badge widgets. All instances of these widgets will be removed from your blog.
    +1 buttons. The +1 and G+ buttons will be removed, as will the "Publish to Google+" links under blog posts and in the navigation bar.
    Please note that if you use custom template, which has Google features+, it may need to be changed. Please contact the person who provided you with this template for recommendations.
    Google+ Comments. Comment support will be discontinued from using Google+, and all blogs that use this feature will have their standard Blogger comments restored. Unfortunately, comments posted via Google+ cannot be transferred to Blogger, so they will no longer appear on your blog. Removal Google comments Plus Unfortunately, comments that were published in the system will be deleted permanently. You can only use the same tool https://takeout.google.com to say backup comments from Google+ to your computer. Only there is no bootloader for it and you can only restore comments manually in a rather crooked way. It’s good that I was on time in due time. How to replace the Google Plus profile with a Blogger profile If you blog on Blogspot, then it is advisable to now return from the Google Plus profile to the Blogger profile (for those who switched to Google Plus at one time). I recommend doing this right now to avoid unforeseen situations that may occur during deletion Google accounts Plus. How to get your Blogger profile back. This is easy to do in the Blogger admin settings:
    Settings -> Custom Settings–> User Profile – here select Blogger


    Save your changes.

    Confirm the transition to and enter your name or nickname.

    Don't forget to upload an avatar on your Blogger profile.

    How to delete a Google Plus profile If you decide to get rid of your G+ profile once and for all, then go to your Google Plus page -> Settings -> scroll to the bottom of the page -> delete Google Plus account:


    Author: Ivanova Natalya

    Today I’ll tell you what CSS3 is, what it’s used with, where to look for it, and how to write it correctly. I warn you, I will tell from myself, simplified for the general public, as I see it + examples. So, let's start from afar.
    CSS are styles in which the properties of an object are written. This means that they are in all existing engines, if you cannot find them, then either you are looking in the wrong place, or they really do not exist ( crooked site). Where are they usually found? Usually this is the root of the site, the name of the style.css file, although, in principle, the name is not as important as the .css extension if the file with such an extension is a style file.
    See also on my blog.

    Where to look for them? The path to the file is assigned in the template between