Skip to main content

Posts

Showing posts with the label css

Show blogger widgets on specific pages/posts

This has been the most asked questions about blogger.There are so many blogs that give its answer but none of them has worked for me and i think not for most of u people also.I tried a lot and finally come up with a very permanent and sleek option that we can choose to show a blogger widget on specific page/post.Try this out and tell me whether it was helpful or not. Firstly, log into your blogger account, Go to layout tab and add the widget in the usual manner.Drag the widget where you want it to be. Now, go to template tab and click on "Edit HTML" option. There is a option of "JUmp to Widget".Select it and and select your widget from the drop down menu. In the widget code, there will be something like this <widget id="Something"......>.....</widget> Now you need that id which is in the semi-colons.Copy that id and paste the below code just above your </body> tag <style> #Your-Id{ display:none ; }</style> ...

CSS Selectors

CSS Selectors >As I told you in the last article that CSS selector is used to determine which html element of your web page you want to style.In this post, you'll get to know about a lot of CSS selectors which you can use while styling your web page.I have provided you a list with a brief description of the selector.If you want to know the format of using a CSS selector then read about CSS Syntax here then you can read and understand the list easily. Selector Example Example description CSS . class .intro Selects all elements with class="intro" 1 # id #firstname Selects the element with id="firstname" 1 * * Selects all elements 2 element p Selects all <p> elements 1 element,element div, p Selects all <div> elements and all <p> elements 1 element element div p Selects all ...

CSS Syntax

CSS Syntax Introduction to CSS CSS refers to the cascading sheet styles which is a new way to design web pages.It comes to great significance because of its portability.Those who are known to programming know that we can include or import files to our program.Using CSS we can import or link other cascading styles int our webpage without retyping the code.Its really useful when you design big webpages of thousands of lines of code.Before we learn all the properties of CSS we first must know its syntax. CSS syntax CSS is a styling way which means that is should start and end with some specific tag which would tell the browser that "hey!This part is for styling and don't display it".That specific tag is.. <style> :- start of style code </style> :-end of style code CSS syntax consists of 2 elements;- 1.CSS selector                                          ...