Copy link to clipboard
Copied
I am trying to increase the font size in the footer. Code shows font-size: small. In Dreamweaver and in the real-time preview the font shows as small. However, when I move the site to a development server, the font size is still x-small/xx-small. What am I missing?
Thanks for any help.
Copy link to clipboard
Copied
Can you post a link to the page if the development server is remotely hosted and not locally?
Copy link to clipboard
Copied
Best bet is to post a link so we can see. But if something is not updating it could be getting cached on the server in which case you could force the page to be reloaded but your visitors may see the cached version for awhile longer.
Copy link to clipboard
Copied
It finally worked. I found another spot to add font size. I will keep this in mind because I'm still not sure why it looked fine in the live preview and on Dreamweaver but not on our development site. I had been working on this and related over the course of several days so I would think it would have updated?
Thanks for your reply!
Copy link to clipboard
Copied
Did you rename your CSS file and upload the new file to your server?
https://css-tricks.com/strategies-for-cache-busting-css/
Examples of cache busting CSS:
<link rel="stylesheet" href="style.css?v=3.4.1">
<link rel="stylesheet" href="style.css?v=3.4.2">
etc...
Copy link to clipboard
Copied
Thank you for the link and the reply!
Copy link to clipboard
Copied
I can't, sorry. Agreed, that would be helpful. Thanks for the reply.