I'm getting the following in the logs since rolling in 7.x-3.0-beta9: sites/all/themes/marinelli/fonts/BergamoStd-Regular.otf

I have checked the file permissions on the server and I don;t think that's the issue. Turning Font Face off eliminates the entries.

CommentFileSizeAuthor
#3 marinelli-1083050-css-fonts-paths.patch499 bytesshp
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

RogueM’s picture

Title: issue with » issue with Font Face
IGC RANGER DX’s picture

Version: 7.x-3.0-beta9 » 7.x-3.0-beta11

I have figured this out and it was a simple fix.

simply go edit the css3_fonts.css and on lines 10-18 replace it all with the following:

@font-face {
	font-family: 'franchise';
	src: url('../../fonts/franchise/Franchise-Bold.ttf');
}

@font-face {
	font-family: 'bergamo';
	src: url('../../fonts/bergamo/BergamoStd-Regular.otf');
}
shp’s picture

Priority: Normal » Major
Status: Active » Needs review
FileSize
499 bytes

The same in the patch...