Both of you are using Arial font where this template comes with Bebasneue font therefore font sizes in styles has been adjusted for Bebasneue font. Simply your font sizes are to big when you are using Arial Font.
If you want to use Arial font simply change font sizes to suit your website. Follow below.
For Text "Get Connected!" make following changes.
Find File: components/com_community/templates/gk_style/css/style.css
Find Line: 1000 which is below
- Code: Select all
body #community-wrap div.greybox div div div h1 {
color: #444444;
font-size: 52px;
height: 60px;
margin: 0;
}
Replace it with below, made the text uppercase if you dont want it delete last line.
- Code: Select all
body #community-wrap div.greybox div div div h1 {
color: #444444;
font-size: 30px;
height: 50px;
margin: 0;
text-transform: uppercase;
}
For text "JOIN US NOW, IT'S FREE!"
Find Line: 1019 which is below
- Code: Select all
body #community-wrap div.greybox a#joinButton {
-moz-text-blink: none;
-moz-text-decoration-color: -moz-use-text-color;
-moz-text-decoration-line: none;
-moz-text-decoration-style: solid;
color: #FFFFFF;
display: block;
font-size: 29px;
font-weight: bold;
height: 33px;
text-align: center;
text-shadow: 0 1px 0 #921F0C;
}
Change font-size to 20px..
See you around...