D5 Creation Forum

Open Forum for D5 Creation's Members and Visitors

Before requesting any support Please search the Forum First. You may find your desired answer. This will save your waiting time and will save our working hour. We may not answer the question which we have already answered. You should also read our Support Policy

Re: Corporate Theme – How to change “Front Page Heading” font “size” and font “type”

Front Page D5 Creation Forum General Questions Corporate Theme – How to change “Front Page Heading” font “size” and font “type” Re: Corporate Theme – How to change “Front Page Heading” font “size” and font “type”

#4555
D5 Creation
Keymaster
Quote:
Quote from [email protected] on July 9, 2013, 00:09
I would like to know how to change the font size.
I am using dreamweaver as the ftp and html editor.

Question 1. Where to I go to copy the “current css style” code so that I can modify it locally and then insert it into the “Custom Code with Head Area.” I would like to decrease the size.

Also, at site usbusinessowner.com I would like to “lessen” the distance between the main image slider and the header. There is too much space between the two for this project.

Thank you.
Kind regards,

You will find all the styling in the style.css file and specific color scheme file under color folder. You can use the following code for the above two changes in the Custom Code within Head Area of CORPORATE Options. Change the values as expected.

Code:
<style>
#heading {
font-family: ‘Oswald’,arial,serif;
font-size: 48px;
margin: 0 0 40px;
text-align: center;
text-transform: uppercase;
}

#header {
min-height: 110px;
}
</style>