What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

hover button and close option to work on ipad

mohorter

New member
Joined
Sep 14, 2022
Messages
1
Reaction score
0
HTML Coins
0
on my website i am using a hover option to display data rather than creating a new web page. the concept works on the page with a computer, but not when using a ipad. when you click on the button when using the ipad it will display the information, but wont go away to display the information below it. the only way to go around this is to refresh the page or go back a page. i want to be able to close the window without having to go through these steps. i would like to use css to fix this issue and need some kind of close option.

link to the page:

scroll down the page and hover over margaret (one with the picture)

html used:
<td colspan="2" class="dropdownfam">
<img src="../../profiletags/tag004.jpg" class="dropbtnfam">
<div class="dropdown-contentfam">
<img src="../../familytags/familytag004.jpg">


css used:
/* Dropdown family Button */
.dropbtnfam {

}

/* The container <div> - needed to position the dropdown content */
.dropdownfam {

}

/* Dropdown Content (Hidden by Default) */
.dropdown-contentfam {
display: none;
position: absolute;
background-color: #f1f1f1;

box-shadow: 0px 0px 0px 0px rgba(0,0,0,0);
z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content afam {

}

/* Change color of dropdown links on hover */
.dropdown-content afam:hover {background-color: #ddd;}

/* Show the dropdown menu on hover */
.dropdownfam:hover .dropdown-contentfam {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdownfam:hover .dropbtnfam {background-color: #3a769b;


any help would be greatly appreciated

adam
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back