Jump to content

Hyperlink


Recommended Posts

You can do so by changing lines 31-33 of modules/blockcms/blockcms.tpl in your theme's directory to:

 

{*                <a href="{$cms_title.category_link|escape:'html':'UTF-8'}">*}
                    {if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}
{*                </a>*}


This will remove the link from the column headers, though I'd be careful, since the header link may be used in the mobile version of your theme, which will break if you remove it. Make sure you test the mobile version of your website.

 

If the want the link to work on the mobile website, but not work on tablets and desktops, then I suggest adding some CSS to change the cursor to a mouse pointer. For example, add something like this in css/global.css inside your theme's directory:

 

@media (min-width: 480px) { .block .title_block a:hover { cursor: pointer } }

Link to comment
Share on other sites

Hello, thank you for your reply,
That's right, do not touch the blockcms.tpl . The link is useful for the mobile version.

I modified the global.css ".footer-container #footer h4" and everything is perfect for me.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...