Home » , » ব্লগার টাইটেল (Title) বা হেডার ইমেজ (Header Image) কিভাবে মাঝখানে আনা যায় ?

ব্লগার টাইটেল (Title) বা হেডার ইমেজ (Header Image) কিভাবে মাঝখানে আনা যায় ?

Header Center Image

ব্লগার টাইটেল বা হেডার ইমেজ মাঝখানে আনার পদ্ধতিঃ


ধাপ-১ঃ প্রথমে ব্লগার ড্যাশবোর্ড →টেমপ্লেট ডিজাইনা →কাস্টমাইজ (CUSTOMIZE) →এডভানসে (ADVANCED) →অ্যাড সিএসএসে (ADD CSS) ক্লিক করুন।
   Template Box   Customize Box

ধাপ-২ঃ এখানে নিচের কোড (Code) গুলা যোগ করুন।
#header-inner {
background-position: center !important;
width: 100% !important;
text-align: center;
}
#header-inner img {
margin: auto;
}
যদি আপনার ব্লগে হেডার ইমেজটা (Header Image) ছোট থাকে এবং আপনি এটা পুরো প্রস্থ জুড়ে দেখতে চাইলে এই কোডটা যোগ করুন।
 #header-inner {
 background-size: cover;
 width: 100% !important;
 text-align: center;
 }
 #header-inner img {
 width: 100%;
 height: 100%;
 }
Apply to Blog

ধাপ-৩ঃ কোডটা পেস্ট করার পর এন্টার (Enter) কী (Key) চাপুন। তারপর অ্যাপ্লাই টু ব্লগে (Apply To Blog) ক্লিক করুন।

অপশনাল (Optional)

এখানে আরও কিছু অপশন (Option) দেয়া হলঃ

১। যদি হেডার ইমেজ ডানে আর টাইটেল বামে দেখতে চান তাহলে এটা যোগ করুনঃ
#header-inner {
background-position: right !important;
width: 100% !important;
}
.titlewrapper, .descriptionwrapper {
float: left;
clear: both;
margin-left: 20px;
}
২। যদি হেডার ইমেজ বামে আর টাইটেল ডানে দেখতে চান তাহলে এটা যোগ করুনঃ
#header-inner {
background-position: left !important;
width: 100% !important;
}
.titlewrapper, .descriptionwrapper {
float: right;
clear: both;
margin-right: 20px;
}
ব্যাস, হেডার ইমেজ আপনার ইচ্ছামত জায়গায় চলে এসেছে।

Live Demo