How can I hide the full url of my website?

To hide the extension shown in the address bar, you have two options. If you control the server, you can define rules that rewrite the URL based on the one the user is trying to get to. In PHP you can use the .htaccess file to define mod_rewrite rules. For similar features to .htaccess you … Read more

How do I make an image smaller with CSS?

I have this page and I have users uploading an icon image for the industries and they are uploading a bigger image. I want to resize it via CSS and it’s cutting it when changing it in Firebug. To see what I mean, select “retail” from the top dropdown “Select Industry Category” and then select “General” from “Select Business Type” … Read more

How to center text with Markdown?

Markdown does not support this feature natively, but you can achieve this wrapping Markdown into HTML. As a rule of thumb, most ‘flavors’ of Markdown will render this as centered text: Specifically for Grav, as their documentation states, you should do these following steps: in your system configuration file user/config/system.yaml make sure to activate the markdown extra option: in your … Read more