[cXF] Hide forum title only on forum list

[cXF] Hide forum title only on forum list

BassMan

Well-known member
BassMan submitted a new resource:

Hide forum title only on forum list - ... with CSS

Check Free and Premium cXF DIY Customizations on customizexf.com
To hide forum title only on forum list you can add this code to your extra.less template:
CSS:
/*** Hide forum title on forum list ***/
[data-template="forum_list"]
{
    .p-title-value {
        display: none;
    }
    .p-title {
        float: right;
    }
}
/**********/

Result:
View attachment 169674


To float the New posts and Post thread...

Read more about this resource...
 
possibly display: none can be seen search engines as hidden text, and may be bad affect on search ranking
may be use opacity better?
sample:

Code:
[data-template="forum_list"] {
    .p-title-value {
        opacity: 0.001;

    } 
}

on extra.less
 
It won't lead to bad SEO by using hidden text via display: none, only way it would is if you were hiding text on your pages in an attempt to gain ranking for certain keywords not visible on the page or hide links on other websites linking back to the page you wanted to gain ranking.
 
Top Bottom