Skip to main content
coliny7836234
Participant
September 11, 2017
Answered

help !!! Font Issue

  • September 11, 2017
  • 2 replies
  • 263 views

hello guys,

I am having issue with the fonts, I try to link the font to google,

i change the code is right , however when i move the cursor on top of the google link,

the dreamweaver notify me that the image is missing.........

Can anyone tell me what is going on?

thanks

    This topic has been closed for replies.
    Correct answer BenPleysier

    I use the @import instruction all the time and do get the "Image not found" message when I hover over the instruction Simply ignore and all is well.

    2 replies

    BenPleysier
    Community Expert
    BenPleysierCommunity ExpertCorrect answer
    Community Expert
    September 11, 2017

    I use the @import instruction all the time and do get the "Image not found" message when I hover over the instruction Simply ignore and all is well.

    Wappler is the DMXzone-made Dreamweaver replacement and includes the best of their powerful extensions, as well as much more!
    Jon Fritz
    Community Expert
    Community Expert
    September 11, 2017

    DW has had issues with using the @import rule for a while now (especially when paired with files from external websites). I haven't used @import in so long, I have no idea if Adobe attempted to fix it or not in the latest versions. I can say that I never have issues with fonts when I include them in <head> of the page via the <link> tag...

    <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>

    <link href='https://fonts.googleapis.com/css?family=Lora:400,700' rel='stylesheet' type='text/css'>

    <link href='https://fonts.googleapis.com/css?family=Raleway:400,300,700' rel='stylesheet' type='text/css'>

    If I have multiple fonts like the above, I will create a fonts include file and drop them into my page using a PHP include. That way, if a font changes in the future, I only have to update one file and the entire site is updated.

    coliny7836234
    Participant
    September 12, 2017

    thanks a lot