Adam
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Gap at bottom of pageI have forced it to look right by putting a min-height on the .content. Although this is not the best way of doing things. Next time i’ll create a child theme.
Thanks for the links esmi.
Forum: Themes and Templates
In reply to: Gap at bottom of pagehi rosamundwo,
I have tried that before because I thought the same, but it doesn’t resolve the problem.
If you look now you will see it has made the gap at the bottom even larger (under the footer).
The gap is bigger on posts with little content:
Any other suggestions?
Thanks for helping
Forum: Themes and Templates
In reply to: Gap at bottom of pageHi esmi,
I am using the Twenty Twelve theme.
Forum: Themes and Templates
In reply to: [Spasalon] Need to make text darker and largerHi Wayne,
In your Style Sheet (style.css) you have:
body {
text-rendering: optimizelegibility;
color: #959595;
font-family: “Trebuchet MS”,”Arial”,”Helvetica”,”Verdana”,”sans-serif”;
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 20px;
margin: 0px;
}Change to:
body {
text-rendering: optimizelegibility;
color: black;
font-family: “Trebuchet MS”,”Arial”,”Helvetica”,”Verdana”,”sans-serif”;
font-size: 12px;
font-style: normal;
font-weight: normal;
line-height: 20px;
margin: 0px;
}It is exactly the same code except the color declaration is changed to black. You can change this to what ever colour you like.
Hope this helps.