Showing posts with label Css. Show all posts
Showing posts with label Css. Show all posts

Saturday, August 15, 2015

How to remove Blogger image Shadow and Border

If you want to remove of those annoying shadows and borders around blogger post images, then follow the instruction

For using the old blogger interface.
1. First go to Dashboard >Template > Customize > Advanced > Add CSS - paste the following code Press enter after the last character of the last line } - Apply to Blog.

border: 1px solid $(image.border.color);

  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);

 For using the new blogger interface
2. Go to Blogger Dashboard > Template > Edit HTML
Click on "Format Template" and search by pressing the CTRL + F keys for the following code

border: 1px solid $(image.border.color);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, .1);

3. After found above the code and remove all blue color line of the code then finally save your Template and has been Done!

+

Sunday, August 2, 2015

How To Attach Stylesheet in HTML

Hello my friends if you are try to learn HTML and CSS but you don't know how to attach stylesheet in html but also there are many ways to link style sheets to HTML, each carrying its own advantages and disadvantages. New HTML elements and attributes have been introduced to allow easy incorporation of style sheets into HTML documents so please follow the bellow steps.

1. see the feagure of attached stylesheet

Your code is must be look like above the image
so if you want to attach stylesheet please goin to the below of the <title>your site name</title>
section
and type or copy the below code and paste after the </title> tag.
<link rel="stylesheet" href="css/style.css">
Note: change value of css and style what is desired name in to the folder
The CSS is folder name and style.css is stylesheet name
so please make sure it what is have inside of your system folder
+