Home | About | Web Stories | View All Posts

4 Oct 2013

How to place texts(Info Box) over image or image banner

Sliders like Feature contents slider, Content sliders, Content slideshow, Gallery contents slider etc. are most popular HTML and are being used as basic part of web page.

Explanation - css logic behind info box over image display

Sliders like Feature contents slider, Content sliders, Content slideshow, Gallery contents slider etc. are most popular HTML elements in these days in web world. They are being used as basic part of web page. They use text or contents over image banner also called info panel or info box, which shows excerpt of full content with title. It(info boxes) uses a positioning property of HTML element. By using position of box element we can create text boxes over image.

So basic concept deals with 'position property' of banner and info box div element. It has been also illustrated as image visual below. Image and info box container or holder div uses "position:relative" as position setting and innter div uses "position:absolute". As we know in HTML world - Relatively positioned elements are used as container block or holder for absolutely positioned elements. Based on this fact we can create text or contents over image.




Demo for texts or info box over image or banner

Six possible variations of info box placement has been demonstrated here. They are :

1. Info Box content at bottom aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, ...

Read More


Stylesheet

  

HTML

  

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically trade goods and services with...

Read More


2. Info Box content at top aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, ...

Read More



Stylesheet

  

HTML

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically trade goods and services with...

Read More


3. Info Box content at left aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet...

Read More


Stylesheet

  
<style type="text/css">
body, html{font-family:Arial, Helvetica, sans-serif;font-size:12px;margin:0px;padding:0px;}
h2{font-size:14px;color:#FFFFFF;margin:0px;padding:0px;overflow:hidden;}
.infobox{background:url(images/transparent-bg.png);}
.infobox a{font-size:12px;color:#FFFFFF;}
.infobox p{margin:0px;padding:0px;overflow:hidden;}
.banner1, .banner2, .banner3, .banner4, .banner5, .banner6{
position:relative;/* Use this div as relative to have internal div(info box) absolute without breaking out. Relatively positioned elements are often used as container blocks for absolutely positioned elements.*/
top:0px;
left:0px;
width:656px;
height:246px;
color:#FFFFFF;
border:1px solid #000;
background:#fff;
}
.banner3 .infobox{ 
position:absolute;
top:0px;
left: 0px; /* Adjust direction by using left, right, top, bottom value. left=0 , top=0 have been used to place it at top left*/
width:175px;/* Adjust width to avoid full page spread */
height:237px; padding:5px; } </style>

HTML

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically trade goods and services with no limit of time or geographical distance. Thus it has effective way to expand...

Read More


4. Info Box content at right aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet...

Read More


Stylesheet

  
<style type="text/css">
body, html{font-family:Arial, Helvetica, sans-serif;font-size:12px;margin:0px;padding:0px;}
h2{font-size:14px;color:#FFFFFF;margin:0px;padding:0px;overflow:hidden;}
.infobox{background:url(images/transparent-bg.png);}
.infobox a{font-size:12px;color:#FFFFFF;}
.infobox p{margin:0px;padding:0px;overflow:hidden;}
.banner1, .banner2, .banner3, .banner4, .banner5, .banner6{
position:relative;/* Use this div as relative to have internal div(info box) absolute without breaking out. Relatively positioned elements are often used as container blocks for absolutely positioned elements.*/
top:0px;
left:0px;
width:656px;
height:246px;
color:#FFFFFF;
border:1px solid #000;
background:#fff;
}
.banner4 .infobox{
position:absolute;
top:0px;
right: 0px; /* Adjust direction by using left, right, top, bottom value. right=0, top=0 have been used to place it at top right*/
width:175px; /* Adjust width to avoid full page spread */
height:237px;
padding:5px;
}
</style>

HTML

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically trade goods and services with no limit of time or geographical distance. Thus it has effective way to expand...

Read More


5. Info Box content at left aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce...

Read More


Stylesheet

  
<style type="text/css">
body, html{font-family:Arial, Helvetica, sans-serif;font-size:12px;margin:0px;padding:0px;}
h2{font-size:14px;color:#FFFFFF;margin:0px;padding:0px;overflow:hidden;}
.infobox{background:url(images/transparent-bg.png);}
.infobox a{font-size:12px;color:#FFFFFF;}
.infobox p{margin:0px;padding:0px;overflow:hidden;}
.banner1, .banner2, .banner3, .banner4, .banner5, .banner6{
position:relative;/* Use this div as relative to have internal div(info box) absolute without breaking out. Relatively positioned elements are often used as container blocks for absolutely positioned elements.*/
top:0px;
left:0px;
width:656px;
height:246px;
color:#FFFFFF;
border:1px solid #000;
background:#fff;
}
.banner5 .infobox{ 
position:absolute;
top:53px; 
left:20px; /* Adjust direction by using left, right, top, bottom value. left and top have been used to place it at top left at custom place*/
width:240px; /* Adjust width to avoid full page spread */
height:137px;
padding:5px;
}
</style>

HTML

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically...

Read More


6. Info Box content at right aligned over image



E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce...

Read More


Stylesheet

  
<style type="text/css">
body, html{font-family:Arial, Helvetica, sans-serif;font-size:12px;margin:0px;padding:0px;}
h2{font-size:14px;color:#FFFFFF;margin:0px;padding:0px;overflow:hidden;}
.infobox{background:url(images/transparent-bg.png);}
.infobox a{font-size:12px;color:#FFFFFF;}
.infobox p{margin:0px;padding:0px;overflow:hidden;}
.banner1, .banner2, .banner3, .banner4, .banner5, .banner6{
position:relative;/* Use this div as relative to have internal div(info box) absolute without breaking out. Relatively positioned elements are often used as container blocks for absolutely positioned elements.*/
top:0px;
left:0px;
width:656px;
height:246px;
color:#FFFFFF;
border:1px solid #000;
background:#fff;
}
.banner6 .infobox{ 
position:absolute;
top:53px; 
right:20px; /* Adjust direction by using left, right, top, bottom value. right and top have been used to place it at top right at custom place*/
width:240px;/* Adjust width to avoid full page spread */
height:137px;
padding:5px;
}
</style>

HTML

E-Commerce Development and Solutions

Online buying and selling of products and services is called E-Commerce. In Electronic commerce all financial transactions, deals take place over the internet. It allows consumers to electronically...

Read More

Books that everyone should read


1

Trading Mastermind Book - Become a Trading Expert From Scratch

Trading Mastermind Book - Become a Trading Expert From Scratch

Book Description

This is one of the best trading books to help you trade the stock market. This Trading Mastermind book helps you become a professional trader. Professional traders test them by creating trading strategies that tell them what to buy, when to buy and when to sell. This book teaches you how to create trading strategies for beginners and how to trade stocks for beginners.

About 84% of individual traders do not have their own strategy for trading the stock market. This book helps you learn, practice and create your own trading strategies, test them and become an active market trader. This book helps you to learn different types of trading strategies like - Day Trading Strategies, Options Trading Strategies, Trading Strategies, etc.

This book is for those who want to delve into the psychology of trading and build profitable trading strategies and systems. The book covers getting started with technical analysis, reading candlesticks and patterns, understanding moving averages, indicators and oscillators that give us buy/sell signals. All this together helps you to make a complete strategy.

The book explains to you the complete strategy building process such as - idea, documentation, backtesting, paper trade, use in real markets. At the end of this you will be able to trade independently. This book teaches you how to use successful traders strategies.

Book details

Language: English
Format: Hardcover
Rating: 4.1 out of 5
Author: Zebra Learn
Print Length: 335 pages
Publication Date: 1 January 2022
Publisher: ZebraLearn Pvt Ltd
Paperback Price: Rs. 1,490.00*
*Price and stock are correct and available at the time of article publication.

Get it here from Amazon


2

Family Law: A Husband's Guide to Matrimonial Disputes

Family Law: A Husband's Guide to Matrimonial Disputes

Book Description

The book contents topics are - Domestic Violence, Divorce, Maintenance to Wife, Multiple Maintenance, Child Custody, Quashing 498A, Perjury, Transfer Petition, Miscellaneous Judgements, Acts.

Special laws have been enacted to protect women from physical, emotional or sexual violence or economic abuse. There is a growing awareness of violence against women around the world.

However, there are no specific laws to protect the dignity of a person. Apart from falsely accusing men of dowry, they are also being made victims of cruelty and domestic violence.

Special laws are misused and have become a source of legal terrorism in which innocent people are imprisoned and victimized through no fault of their own. In many unfortunate cases, some men are tortured to such an extent that they break down and commit suicide.

The purpose of this book is to strengthen such laws and court decisions where men have been able to regain their dignity and the ability to defend themselves, including the repeal of 498A and the resolution of multiple maintenance claims under various laws.

There are numerous types of lawyers in India for dealing the different cases related to criminal law, corporate law, family law, etc. The type of laywers in India are - Intellectual Property Lawyer, Public Interest Lawyer, Tax Lawyer, Corporate Lawyers, Immigration Lawyers, Criminal Lawyer, Civil Rights Lawyer, Family Lawyer, etc. After reading this book, you will be able to know how to select a specific family and criminal lawyer.

Book details

Language: English
Format: Paperback
Rating: 4 out of 5
Author: Navin Kr Agarwal & Manoj Agrawal
Print Length: 336 pages
Publication Date: 1 January 2018
Publisher: Notion Press
Paperback Price: Rs. 374.00*
*Price and stock are correct and available at the time of article publication.

Get it here from Amazon


3

How To Use Google Voice With Google Docs

How To Use Google Voice With Google Docs

Book Description

Using Google Docs for the first time can be a bit overwhelming, but once you get used to the features of this book, it will become easier.

Google Docs Voice Typing lets you complete your project using your voice. This book helps to learn "Sadsafdasaf". Especially if typing is difficult with your hand or you don't want to type while writing a book novel.

Following are the highlights of what this book offers -

  • How Does Google Docs Work?
  • Step-By-Step Directions For Creating An Account
  • Instructions For Making A Blank Document
  • Importing A Document From Microsoft Word And How To Do It
  • Instructions On How To Set Up On Your Computer, Google Voice, Or Smartphone
  • Install Google Voice On An iPhone
  • Getting Started With Google Docs Voice Typing for Android
  • Instructions For Installing Google Docs Voice Typing Into Your Personal Computer
  • Linking Multiple Phone Numbers To A Single Account On Your Computer's Google Voice App
  • How To Dictate Your Writing With Your Voice Using The Voice Dictation Feature In Google Docs
  • How To Make Changes To Text Dictated By Voice In Google Docs
  • How to Proceed if Google Docs Disallows Voice Typing
  • Why Isn't Google Docs Recognizing My Voice As An Input Option?
  • Solutions To Problems With The Voice Input On Google Docs

Book details

Language: English
Format: Kindle Edition
Author: Walker U. Pugh
Print Length: 38 pages
Publication Date: 18 August 2022
Kindle Price: Rs. *
*Price and stock are correct and available at the time of article publication.

Get it here from Amazon


4

Mortgage Terms - Financial Education Is Your Best Investment

Mortgage Terms - Financial Education Is Your Best Investment

Book Description

Everyone should know the basic terms of a mortgage. One of the most important decisions you can make is to buy a home and mortgage it to pay off the house. The decisions you make about your mortgage will have financial implications for years to come.

If you find yourself overwhelmed and confused by all the terms and conditions of a mortgage, don't worry because you are not alone. Getting a mortgage can be a complicated process that is made worse by unfamiliar terminology used by your mortgage lender.

The terminology used in mortgage discussions such as appraisal, equity, escrow, points and settlement cost easily confuses most people. Because mortgage professionals often confuse people by speaking their language.

This handy guide to mortgages covers many confusing topics that are easy to explain, such as -

  • Mortgage loans and brokers, types of Mortgage
  • Subprime, reverse and FHA mortgages, Mortgate Bonds
  • Business and residential mortgages
  • Custody, points and settlement costs
  • Home Equity and Loan Modification, House Mortgate

This handy glossary lists more than 125 of the most important mortgage terms you'll encounter in alphabetical order. Each mortgage term in the book is explained in detail with clear and concise article style descriptions and practical examples.

This will help you understand the most common mortgage terms you may encounter and what role they play in the mortgage process. Use this glossary of mortgage terms to better understand the overall mortgage process, as well as any specific mortgage terms you may be unfamiliar with.

Book details

Language: English
Format: Paperback
Rating: 4 out of 5
Author: Thomas Herold
Print Length: 266 pages
Publication Date: 2 March 2020
Publisher: Indy Pub
Paperback Price: Rs. 1,020.00*
*Price and stock are correct and available at the time of article publication.

Get it here from Amazon


5

Learn Google Cloud Platform(GCP) from the Scratch: The Ultimate Guide for Beginners

Learn Google Cloud Platform(GCP) from the Scratch

Book Description

As you can see, Google Cloud is growing rapidly these days as companies increasingly adopt multi-cloud strategies. In 2019, it was again named a Leader in Gartner's Infrastructure Magic Quadrant for Services, and people with Google Cloud skills are in high demand.

To meet this demand and help organizations identify talented professionals, Google created its Associate Cloud Engineer certification.

This book is designed to provide students with a solid foundation of GCP competency that they will later need to obtain the Google Certified Professional Cloud Architect (PCA) certification, which was recently recognized as the highest-paying IT certification of 2019. It has been labeled as.

This book prepares you for the following tasks -

  • Set up and configure Google Cloud accounts using best practices.
  • Using GCP services like cloud storage, Compute Engine, and Kubernetes Engine in your daily work.
  • Passing the GCP Associate Cloud Engineer certification exam.

This book is suitable for system administrators or anyone else who wants to learn how to configure and manage Google Cloud systems and demonstrate these skills through certification. This book can also be used by developers who want to use Google Cloud for their applications.

Book details

Language: English
Format: Kindle Edition
Rating: 3.8 out of 5
Author: Adney Ainsley
Print Length: 96 pages
Publication Date: 24 August 2020
Kindle Price: Rs. 293.00*
*Price and stock are correct and available at the time of article publication.

Get it here from Amazon


Tags : ,
Aashutosh Kumar Yadav

By Aashutosh Kumar Yadav

He is a PHP-based UI/Web designer and developer by profession and very interested in technical writing and blogging. He has been writing technical content for about 10 years and has proficient in practical knowledge and technical writing.
@www.infotokri.in

0 comments:

Post a Comment