Quote:
Originally Posted by hbtq Hi,
This is my website galcentral.com . I have made it to have www. with the url but when i open wwwDOTgalcentralDOTcom there are two things that don't have www. when click on it.
1. Home
2. Logo
How can I make a link to Home and Logo default with www. ?
thanks. |
Enter this following into your .htaccess file (located at the root directory):
Code:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://galcentral.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://galcentral.com$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.galcentral.com/.*$ [NC]
RewriteCond %{HTTP_REFERER} !^http://www.galcentral.com$ [NC]
RewriteRule .*\.(jpg|jpeg|gif|png|bmp)$ - [F,NC] It'll work site wide.
Quote:
Originally Posted by chilllax Just recently installed it and it looks excellent. I was wondering if anyone knew how to change the link color of only the register link in the "topbar" header portion.
Thanks for any help. :) |
Option 1: Give that link it's own class name, then add that class into the CSS file specifying the color you want.
Option 2: put
Code:
style="color:#006699;" <-- use your own color choice
inside the anchor (the <a href>) of that link (same as option 1, but puts CSS in the page and not in the CSS file).