montezumaxx Posted April 2, 2017 Share Posted April 2, 2017 Hello, can you help me to hide H1 text TOP in category content page. there Two same texts ... and H1 have black background... sorry for english. Thanks Link to comment Share on other sites More sharing options...
samverdyck Posted April 3, 2017 Share Posted April 3, 2017 To hide the text you mention in your screenshot, you can edit this file: /themes/default-bootstrap/category.tpl On line 51 replace this code: <span class="category-name"> {strip} {$category->name|escape:'html':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'} {/if} {/strip} </span> with this: <!-- <span class="category-name"> {strip} {$category->name|escape:'html':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'} {/if} {/strip} </span> --> To remove the black background you can edit this file /themes/default-bootstrap/css/category.css On line 11, edit this code: background-color: #464646 !important; with this code: background-color: none !important; 1 Link to comment Share on other sites More sharing options...
montezumaxx Posted April 4, 2017 Author Share Posted April 4, 2017 Thank you verry much mate!!! Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now