Ignacio Perez
Forum Replies Created
-
Forum: Plugins
In reply to: [Hover Image Button] How to change type and color of fontsYou can add custom CSS code in the plugin’s settings. This is an example of code you can use:
.hib-text-table-cell .title * { font-family: 'Roboto', sans-serif; color: #fff; font-size: 40px; } .hib-text-table-cell .subtitle { font-family: 'Roboto', sans-serif; color: #fff; font-size: 20px; }If you dont have the Roboto font added to your web, add this line to the web header to use the font from Google Fonts:
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>Forum: Plugins
In reply to: [Hover Image Button] is it possible to paginate the subtitles?For now it is not possible. I would like to include it in future updates.
Forum: Plugins
In reply to: [Hover Image Button] To me it not work wellYour theme or other plugin is modifying the Hover Image Button plugin, adding
<code>tags and changing the second button size.If you inspect the code, you can see that in the second button it is removing the px units, so the browser can not render the button properly.
You can try to put the buttons inside ‘[hover-image-row]’.
Forum: Plugins
In reply to: [Hover Image Button] Don't show title until hover?Thank you very much! I’m glad you like it.
You can also use this code to show the title when it is a mobile or tablet device (without on hover effects) and hide it when is a computer.
@media handheld, only screen and (min-width: 992px) { .hib-text-table-cell .title { display: none; } .hib-text-table-cell:hover .title { display:block; } }Forum: Plugins
In reply to: [Hover Image Button] Hide Hover Image Button on mobile devicesBy now it is not possible to change the visibility of the buttons, but you can add custom CSS code to do this.
Copy and paste next code to the CSS field in Hover Image Button settings to hide buttons on mobile devices:
@media handheld, only screen and (max-width: 767px) { .hib-grid { display: none !important; width: 0; height: 0; } .hib-container { display: none !important; width: 0; height: 0; } }Or use this code to hide on mobile and tablet devices:
@media handheld, only screen and (max-width: 991px) { .hib-grid { display: none !important; width: 0; height: 0; } .hib-container { display: none !important; width: 0; height: 0; } }Forum: Plugins
In reply to: [Hover Image Button] Is it a bug?A new version of the plugin has been released and the bug has been solved, you can update to the last version.
Forum: Plugins
In reply to: [Hover Image Button] Is it a bug?You can use the old version while I try to fix this problem. Here is the first version:
https://github.com/igpremuo/hover-image-button/archive/master.zip
Copy the
hover-image-buttonfolder in to the/wp-content/pluginsdirectory`.Forum: Plugins
In reply to: [Hover Image Button] How customize the image size?There is not enough space for the pictures with this width. I recommend you to put images in different rows and not use the width option.
[hover-image-row] [hover-image-button title="Picture 1" ...] [hover-image-button title="Picture 2" ...] [/hover-image-row] [hover-image-row] [hover-image-button title="Picture 3" ...] [hover-image-button title="Picture 4" ...] [/hover-image-row]Forum: Plugins
In reply to: [Hover Image Button] How customize the image size?Yes, it is possible, add the option
widthandheightwith the size in pixels or in percentage.[hover-image-button title="Section 1" subtitle="It's and amazing section" link="http://my-section-link" image="http://my-image-link" width="250px" height="100px"]or
[hover-image-button title="Section 1" subtitle="It's and amazing section" link="http://my-section-link" image="http://my-image-link" width="100%" height="50%"]The width does not work if you are using it with the
hover-image-rowtag.Forum: Plugins
In reply to: [Hover Image Button] Is it a bug?That happens because the plugin scripts are loaded after the theme scripts.
Can you tell me what theme are you using?
Thanks for the bug report.
Forum: Plugins
In reply to: [Hover Image Button] Only images, it is possible?It is possible, just add the shortcode without the title and subtitle tags.