Copy link to clipboard
Copied
I have the latest version of Adobe Dreamweaver which just replaced my much older version. I use it to manage my website. However, I cannot determine how to adjust the FONT SIZE.
Can anyone help with this?
Thanks,
D a v e
Highlight the text that you want to change, click on Edit Rule and select the font Size as in
Copy link to clipboard
Copied
Are you trying to change the font size for a particular tag, such as the <p> tag, globally?
Do you have an external style sheet where your font sizes are defined? If, so you may see definitions like this:
h1 {
font-size: 3.7vw;
font-weight:300;
text-align:center;
}
h2 {
font-size: 2.9vw;
font-weight:300;
text-align:center;
}
p {
font-size: 1.6vw;
font-weight:400;
text-align:left;
}
The unit of measurement for fonts can be pixels (14px), ems, rems, viewport widths (as in the example above), as well as other units.
Copy link to clipboard
Copied
On my "old" Dreamweaver all I had to do was highlight the word I wanted to change the size of, drop down a font size menu, and click the new size.
Thank you,
Dave
Copy link to clipboard
Copied
OK. You have just provided more information that can help someone give you an answer.
You have now told us that you are looking for a solution within the design view and that you want to make an inline change to a specific text, not a global change.
I am not familiar with design view, but someone here will have a solution for you.
Copy link to clipboard
Copied
Highlight the text that you want to change, click on Edit Rule and select the font Size as in
Copy link to clipboard
Copied
Thank you. Unfortunately, when I drop down EDIT, there is no RULE to use.
Copy link to clipboard
Copied
Please read my lips
Highlight the text that you want to change, click on Edit Rule and select the font Size as in
Copy link to clipboard
Copied
I found it under PAGE PROPERTIES in the task bar. Thanks!
I very much appreciate it.
Dave
Copy link to clipboard
Copied
davido61985735 wrote:
I found it under PAGE PROPERTIES
You really need to learn how to use CSS. The modern web requires it.
Copy link to clipboard
Copied
Thanks very much.