Hi Lawrence,
Thanks for using T3 framework for your project. I will answer your questions one by one.
1. how to make the master header smaller as it's far too large
You mean the masthead? To customize masthead style and its size as well, open file
component.less in folder
templates\t3_bs3_blank\less, find the following style and customize as you expect
//
// MASHEAD & JUMBOTRON
// --------------------------------------------------
// Jumbotron (jumbotron.less)
// --------------------------
.jumbotron {
h1, h2, h3 {
margin-top: 0;
}
p {
// Remove margin on last paragraph
&:last-child {
margin-bottom: 0;
}
}
.container & {
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
}
@media screen and (min-width: @grid-float-breakpoint) {
.container & {
}
h1 {
}
}
}
// Mashead
// --------
.masthead {
padding: (@t3-global-padding * 2) 0;
text-align: center;
p {
// Remove margin on last paragraph
&:last-child {
margin-bottom: 0;
}
}
@media screen and (min-width: @grid-float-breakpoint) {
padding: (@t3-global-padding * 4) 0;
h1 {
font-size: @font-size-base * 7;
}
p {
font-size: @font-size-base * 2;
}
// Bigger mashead btn
.btn-lg {
margin-top: @line-height-computed;
padding: 18px 42px;
font-size: @font-size-base * 1.5;
}
}
}
// T3 Jumbotron Primary
// --------------------
.jumbotron-primary {
background-color: @brand-primary;
color: lighten(@brand-primary, 50%);
h1, h2, h3 {
color: @white;
}
p {
color: @white;
}
.btn-primary {
border-color: #fff;
}
}
Please always keep in mind to compile LESS to CSS.
2. how to remove the powered by and copyright
Open file "default.php" in folder "templates\t3_bs3_blank\html\mod_footer" then customize the footer info.
3. sticky footer
For this, please take a look here:
https://gist.github.com/mokagio/1918937.
Gardner.