You'll need to open or create a .htaccess file in your public_html - this will force visitors to use https at the start thus forcing an SSL encrypted connection to be used.
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}/$1 [R=301,L]