0

I wanted to hide that in Joomla using the custom CSS

This is the link to my site: http://guamlfp.org/test

I am trying to remove the title of the articles "About" and "Vision"

I need the CSS code to hide the following HTML:

<a href="/component/content/article/9-aboutlfp/6-aboutlfp?Itemid=101" itemprop="url">About</a>

<h3><a href="/component/content/article/11-vision/7-vision?Itemid=101" itemprop="url">Vision</a></h3>
Learner
  • 8,379
  • 7
  • 44
  • 82
Edison
  • 15
  • 6
  • so in your site you just want to hide the heading of h3 size or you want to remove the content also – Learner Aug 03 '19 at 09:45
  • you need hide top of two links or red color title – Ranjith v Aug 03 '19 at 09:47
  • if we add the css like h3{display: none;}, it will be affected to every h3 which is not a good way. Can you explain the scenario. Also do you have code level control in joomla – Learner Aug 03 '19 at 09:48

2 Answers2

1

add this css in your css

css

.sppb-article-info-wrap h3{
   display:none;
}
Ranjith v
  • 1,032
  • 5
  • 15
0

there are a lot of different ways to hide it. you can do it directly to the html or you can use css.

1. Using HTML

<h3 style="display: none;" >
    <a href="/component/content/article/11-vision/7-vision?Itemid=101" itemprop="url">Vision</a>
</h3>

2. Using CSS

HTML Code

<h3 class="header--vision" >
    <a href="/component/content/article/11-vision/7-vision?Itemid=101" itemprop="url">Vision</a>
</h3>

CSS Code

.header--vision {
    display: none;
}