What would make the <a> to not create a link - html

I am updating a website that I didn't create, this has been a bit of a chore. There is an instance where links to other parts of the site have been used and they aren't working. I have studied the code and can't seem to figure out why the link isn't appearing ... please help
This is the code snippet ...
<article class="grid_4 maxheight">
<div class="box1 maxheight">
<div class="box-indent">
<h3><strong>01.</strong>Projects</h3>
Lorem Ipsem sit dolor ...
</div>
<div class="aligncenter">Suggest </div>
</div>
</article>
this code is repeated for 3 separate boxes and none of the anchor tags are creating a link at all, nothing ... doesn't even exist I don't know what is causing this to not work, all the other links on the page seem to work just not these 3

Give Full path of contacts.php in href attribute in anchor <a></a> tag.
Or make the contacts.php saved in same folder then It will links to the corresponding page.
If link and data in <a>anchor tag</a> is invisible then check css property of that class/id and make display: block for that css.
It is working for mine.

Related

How do I override every banner title tag from H2 to H1 of my wordpress theme?

I'm using Real Homes theme, and I have this weird problem. After finishing up my website, I've noticed that some titles are not H1 tag, but H2. As I said, not everyone. I thought it might be the template, but some of the ones with H1 title use a template. So I checked them manually and I can't figure out where to edit this. So my question became: how do I override the banner title tag so that every banner title is H1 tag? Here is an example of a code in H1 and H2 tags. Thanks!
</div>
<section id="rh-banner-attachment-parallax" class="rh_banner rh_banner__image" style="background-image: url('');">
<div class="rh_banner__cover"></div>
<div class="rh_banner__wrap">
<h2 class="rh_banner__title">Real Estate</h2>
<div class="rh_banner__controls">
</div>
<section id="rh-banner-attachment-parallax" class="rh_banner rh_banner__image" style="background-image: url('');">
<div class="rh_banner__cover"></div>
<div class="rh_banner__wrap">
<h1 class="rh_banner__title">News</h1>
</div>
</section> <section class="rh_section rh_section--flex rh_wrap--padding rh_wrap--topPadding">
<div class="rh_page rh_page__listing_page rh_page__news rh_page__main">
I tried editing some files in editor theme, the one inside wordpress, but nothing worked. In the end, I couldn't even find the exact line I was looking for. I guess I was hoping to find a line do edit, but I'm not skilled enough I'm afraid. That's why I want to override the info. I also tried searching for a solution here, but nothing seems to work for this theme. Thanks in advance.
Edit: you can see the problem in the demo of this theme as well: https://modern.realhomes.io
The Contact page and News page have the banner title in H1 tag, while the other pages are in H2 tag.

Changing the visibiliy of one DIV based on presence of another div or element

Ok, I've been trying to figure this out for a while, and not quite sure it's possible in pure CSS.
I'm trying to create a bit of custom styling on a page of FileRun links that I send to clients. Sending a bunch of subfolders of large TIFF images (I split them up to make the download manageable). Most clients can figure out that they should go into each subfolder and download them individually. However, the "download all" button appears on the main page of the link, and plenty of not so tech-savvy clients send me angry emails complaining that they hit the "download all" button, and can't open or download the 5GB zip file that FileRun creates of the entire main folder link.
An example of a page is here:
https://demo.filerun.co/wl/?id=T2Gv5oGiGMxO3welkXbaqs92fZ6meJmU
The main limitation is that FileRun is encoded in IonCube, so I only have access to the CSS file, so no way I can add javascript or PHP code.
I've been trying to find a way to write CSS to hide the DOWNLOAD ALL button <a class="actionBtn"> by changing the CSS to .actionBtn {display:none;} in the main link page, but not any subfolders. I have found you can tell when you are in a subfolder page when there is a 2+ level breadcrumb containing a carat.
e.g. in the 'elf' subfolder, this can be detected by the presence of the > in the breadcrumb, and the presence of <span class="bcSep">></span>
Is there any way to change the attribute of actionBtn or right div on the right, depending on the presence of the <span class="bcSep">></span> or number of elements in the breadcrumb?
The nesting order in the header div on the root page is:
<div class="left">
<a class="breadCrumb">xxx</a>
</div>
<div class="right">
<a class="actionBtn">DOWNLOAD ALL</a>
</div>
On any subfolders it is:
<div class="left">
<a class="breadCrumb">xxx</a>
<span class="bcSep">></span>
<a class="breadCrumb">xxx</a>
...
</div>
<div class="right">
<a class="actionBtn">DOWNLOAD ALL</a>
</div>
I've tried child selectors, but can't find a way to target the actionBtn or right element from the breadCrumb or left element... Any ideas or am I asking for the impossible from pure CSS?
Since all three of your products (colored, samba and skaven) as well as the DOWNLOAD ALL anchor link have unique URLS, you can just use the href attribute value to only select the anchor tag on the homepage using a css attribute selector like this:
a[href="http://someUniqueURL.com/"].actionBtn {
display:none;
}
Check and run the following Code Snippet for a practical example of the above approach:
/* CSS */
a[href="https://demo.filerun.co/?module=weblinks&section=public&multidownload=1&id=T2Gv5oGiGMxO3welkXbaqs92fZ6meJmU"].actionBtn {
display:none;
}
<!-- HTML -->
<p>Homepage Link</p>
Download All
<hr/>
<p>Product 1</p>
Product 1
<hr/>
<p>Product 2</p>
Product 2
<hr/>
<p>Product 3</p>
Product 3
<hr/>

How to fix ahref not linking to the id

I'm creating a table of contents using the id linking method. How do I get it to work properly? I've triple checked and for some reason, it's not responding when I click on the link.
I've tried creating an id and name within the tag. It only seems to work for the top of page id. I'm using Shopify's blog editing feature which accepts HTML.
1. Example
<h3 id="Test">My Header Here</h3>
I've got it to work before but it's not anymore. Maybe I have to clear my cache?
you just add height at your tag
for example
<html>
<head>
</head>
<body>
<div style="height:600px">
1. Example
</div>
<div style="height:600px">
<h3 id="Test">My Header Here</h3>
</div>
</body>
</html>
The code is correct.
What happens if you try the code below instead? Both of these should be valid, so it would be weird that one works and the other doesn't.
1. Example
<a name="Test"><h3>My Header Here</h3></a>

Apply Hyperlink to a CSS Created DIV

I need to figure out a way to have the Yellow Box <div id="bottom"> and the Text <div id="basket">SHOP NOW</div>link to google.com for example.
I have tried adding <div id="bottom">
</div> but nothing is working. It appears to skew the entire section when I add this syntax.
I have searched all over the place looking for an answer, I have read through almost all related StackOverflow articles and still can't figure out the correct way to do this.
Here is a link https://jsfiddle.net/sixpac/8p4m7oc2/8/ to my code.
Can someone point me in the right direction with this? Is this possible to complete without JavaScript? Thank you!
You are looking for something like this https://jsfiddle.net/8p4m7oc2/13/
<div id="bottom">
SHOP NOW
<div id="price">$70.00</div>
</div>
You can wrap the div element in an anchor element to have it link to your chosen url / file.
i.e.
<a href="www.google.com" class="fill-div">
<div id="bottom">
</div>
</a>
This should be the code:
https://jsfiddle.net/RreTH/
Edit:
This will make the whole div element link to google for linking just the text the should be enough to link only the text.
Simply change the basket div to <a>:
<a id="basket" href="http://www.google.com">SHOP NOW</a>

HTML Anchor ID not working

I'm making a quick site and all the content is on one page, and I'm using a small menu with anchor links to make navigating to a certain part faster for the end user. I have two anchor links that work fine (About Me, My Projects) but the "Contact Me" link jumps to a random part of the "My Projects" section.
A preview of the site is available here : http://dev.cuonic.com/cuonic.com/
I have checked the IDs, they correspond, there is no random "contact-me" ID lying around in the "My Projects" section, I've changed the ID, still happens, and this in both Firefox and Chrome. Whats going on ? Any help is appreciated :)
All of then content within //*[#id="content"]/div[2] is floated to the left. Floating elements don't affect the height of their containing block-level elements. If you add this:
#contact-me { clear:both; }
to your CSS somewhere, the <span id="contact-me"> tag will reposition to where you actually want it. Your page still isn't long enough for the contact form to go all the way to the top (at least on my monitor), but it will still scroll to the end of the page.
Change this section of code:
</div>
<span class="anchor" id="contact-me"></span>
<h1>Contact Me</h1>
<div class="text">
To this:
</div>
<h1>Contact Me</h1>
<span class="anchor" id="contact-me"></span>
<div class="text">