Dreamweaver CS6: Issues with Font Functionality

Currently, I am utilizing Dreamweaver CS6 for coding and in the process of creating a website. However, I am encountering an issue with fonts. Typically, whenever I add a font to the Dreamweaver font library and incorporate it into my CSS, the font does not display on my website. This even happens when using default Adobe Edge Web Fonts.

Could someone please assist me in resolving this font-related problem?

Answer №1

I'm encountering an issue with Dreamweaver CS6 where it's not recognizing the web fonts I'm trying to add through the Web Fonts option. Even though I attach the font's CSS sheet and include the font's name in the font-family tag, the fonts on my webpage remain unchanged.

After some investigation, I believe I've found a solution to this problem. It seems that CS6 is inputting the wrong name into the Font Families text box. To rectify this, open the CSS sheet of the specific font you're using and copy the correct font name from the relevant line in the CSS file.

For instance, if the CSS includes "font-family: 'Special_font_regular';", you should add "Special_font_regular" as the font name for the font-family tag. This modification should be reflected in your CSS code under the appropriate class or id tags: font-family: "Special_font_regular".

By following these steps, you should now see the new font displayed correctly on the webpage you are designing.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Prevent CSS3 columns from reverting back to their original state after being rendered

Utilizing css3 columns, I have created a layout with an unordered list displayed in 3 columns. Each list item contains another list that can be toggled to show or hide by clicking on the title using jQuery. The structure of the html is as follows (with ex ...

Tips for creating a preloading screen before your webpage is fully loaded

I am interested in creating a preloader bar that displays the loading progress of a webpage before it is completely loaded, similar to the example on pushcollective.com where there is a progress bar at the top of the page. Is there a clean and efficient w ...

toggle the outer div along with its corresponding inner div simultaneously

On one of my pages (let's call it "page1"), I have multiple divs, some nested within others. These divs are initially hidden and toggle on when a specific link is clicked (and off when clicked again). To view a nested div, the outer div must be opened ...

Move dots or points smoothly from a starting position to their destination

How can I achieve animation using SVG or CSS? The animation should involve the following: Initially, only lines will be visible (picture 1). After 2 seconds, dots (.) will appear and join the line curves with some animated movement to the dots (picture 2 ...

The static background and fixed header are locked in a perpetual battle

I am currently working on creating a fixed header that remains at the top of the page. However, I am facing an issue where the background seems to be overlapping and hiding the header. <style type="text/css> html, body {height:100%; margin:0; paddin ...

Is there a way to select and position child divs using jQuery?

<div id="section"> <div>x</div> <div>y</div> <div>z</div> </div> I have implemented a fixed positioning. How can I access all the child elements within the parent container using jQuery? Specific ...

What is the best way to incorporate responsive centered text into my HTML element using Bootstrap 4?

Is there a way to add a responsive centered text element to my <a> element without being affected by the overlay color? Also, is there an alternative method to using an extra overlay div in Bootstrap 4? Check out this link for more details. HTML & ...

Implementing an onClick event to reveal a concealed div located above each bar in D3.js (potentially requiring additional CSS code)

I'm currently working on a project where I want a hidden div, named myDiv, to be displayed above the clicked bar whenever a square bar is clicked. Here's what I've attempted so far: 1) I have written a Javascript function called showDiv() ...

Styling with CSS: Spinning picture for mobile displays

http://jsfiddle.net/ajxqnqpo/ I'm facing a challenge with displaying a rotated image on full screen for mobile devices without using fixed width or margin properties. The image should ideally have a 10px margin from each side. The issue arises becau ...

"Troubleshooting PHP Safari's Issue with Converting PDFs

I've been working on using headers and Imagick to display PDFs as images. Everything seems to be working fine in browsers other than Safari, where the image is displayed with a black background. You can check out an example here, along with the code u ...

The arrangement of CSS code is crucial for it to work properly; any deviation from the correct order

I am facing a problem where I am trying to display a circular div using CSS, but it only works if the background image property is set first. Typically, this wouldn't be an issue if the image wasn't being dynamically inserted using PHP code. I ...

Adding Custom Style to AngularJS Directive using External CSS File

I am attempting to apply a unique style to an angularjs directive using a separate CSS file. .index-nav-bar-directive{ ul{ list-style: none; margin: 0; padding: 0; } h1{ background-color: #2980b9; colo ...

Separators can be implemented to enhance the visual distinction between arrow icons and text within

Currently, I am working on creating a select menu using Bootstrap 4. I successfully replaced the arrow icon in the select element by changing the background, but now I am facing a challenge in adding a left border to that image. I have tried different meth ...

Make sure to use the jQuery load function to specifically target and retrieve

Hello, I'm new to working with jQuery and I have a question about adding a vertical scrollbar to a jQuery modal window. Specifically, I want the scrollbar to appear when there is a large amount of text within the modal window. Can you guide me on wher ...

Issue with ng-maxlength directive

In my Angular 4 Application, I am attempting to implement validation for form inputs. Specifically, I want to restrict inputs with numbers to not accept more than 4 digits. If the input contains more than 4 digits, the form should be marked as invalid. I a ...

What is the method to access a CSS file when parsing a website's HTML code?

I'm attempting to access a CSS file through the HTML code of my website in order to modify the hex color values. Important: It's worth mentioning that I am making these changes directly on my own website, so it's not as simple as just alter ...

Ways to transfer data from TypeScript to CSS within Angular 6

Trying to work with ngClass or ngStyle, but I'm struggling with passing the value. Here's my current code: strip.component.ts import { ... } from '@angular/core'; @Component({ selector: 'app-strip', templateUrl: &apo ...

Constructing a comprehensive inventory is a skill that requires strategy

Can someone advise on the best way to create a list structure with one parent category and two subcategories, each containing three items? Would it be ideal to use a combination of span and two uls, or perhaps a mix of span, anchor tags, and ul elements? ...

Obtain the final segment using PHP from a web address

My URL is: http://domain/fotografo/admin/gallery_bg.php and I am trying to extract only the last part of the URL: gallery_bg.php However, I am looking for a dynamic solution, where the last part of the URL is obtained for each page I visit. ...

The upper spacing is malfunctioning

Why is my margin-top not working when margin-left is functioning as expected? p.ex1 { margin-top: 15px; margin-left: 35px; } <div class="footer2"> <p class="ex1"> ABOUT US </p> <hr> <div class="footer"> &l ...