Darío Orlando Fernández
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hueman] how to remove h4 tag from ” You may also like… “In your child theme style sheet
.heading {
font-weight: normal!important;
}you may also want to reduce font size, in such case
.heading {
font-weight: normal!important;
font-size: 1em; /* or whatever size you want */
}Forum: Themes and Templates
In reply to: [Hueman] Desktop and mobile viewThe responsive Hueman theme uses /assets/front/css/main.min.css as style sheet.
Start a child theme and copy
/assets/front/css/main-not-responsive.min.css into it.There must be a better way around through functions.php using wp_enqueue_style but that requieres deeper research.
Good luck!
Dario- This reply was modified 5 years, 1 month ago by Darío Orlando Fernández.
Forum: Themes and Templates
In reply to: [Hueman] Desktop and mobile viewHi Daniele,
I suggest you don’t!
You can achieve what you want through intense child-theme CSS edition. The standard break-point for mobile responsiveness is 720px screen width. You must use either @media screen (max-width: 719px) {….} or @media screen (min-with: 720px) {….} to change each of the many styles affected by responsiveness.
Are you sure is worth it? Except on landscape orientation, people will need to scroll horizontally to see all the content and this is not at all user friendly.
Cheers,
DarioForum: Themes and Templates
In reply to: [Hueman] Change Color of Footer Widget BackgroundHi Kamodh,
The CSS for footer widget is
footer#footerCheers,
DaríoForum: Themes and Templates
In reply to: [Hueman] footer template back-to-topHi Giorgio, thanks for your rapid response.
Leaving overflow to its default value, setting the blocks height to 100vh and fixing footer to bottom solved all problems, including the back-to-top issue. Will set this topic to solved.
BTW: I can’t find where the sticky footer has been implemented in Hueman theme customizer.
Forum: Themes and Templates
In reply to: [Hueman] footer template back-to-topI found the reason. Selector mylanding-page is used to change page sections layout through css:
/* Force page height to viewport height */
/* add scroll bar if necessary */
.mylanding-page #wrapper {
height: 100vh;
overflow: scroll; /* Seems this is the cause */
}
/* Eliminate header */
.mylanding-page #header {
height: 0;
padding-bottom: 0;
}
/* Modify page margins and paddings */
.mylanding-page #page {
margin-top: 0;
padding-bottom: 0;
}
/* Make page container inner transparent */
.mylanding-page #page .container-inner {
background-color: transparent;
box-shadow: none;
}
/* Make main transparent */
.mylanding-page .main {
background-color: transparent!important;
}
/* Eliminate page title */
.mylanding-page .page-title {
display: none;
}
/* On laptops and desktops, fix footer to page bottom */
@media screen and (min-width: 720px) {
.mylanding-page #footer {
position: absolute;
bottom: 0;
}
}Forum: Themes and Templates
In reply to: [Hueman] footer template back-to-topScroll down the page and try the test link Look a this link href=”#”
Forum: Themes and Templates
In reply to: [Hueman] footer template back-to-topLink to draft site
https://mivitral.comForum: Plugins
In reply to: [Regenerate Thumbnails] Not woking since latest updateVery unfortunate.
I will need to fix all my image hyperlinks manually since all got changed and now point to incorrect images.Forum: Plugins
In reply to: [Regenerate Thumbnails] Images replaced in posts all wrongViper,
I tried Regenerate Thumbnails after successive image imports failures.
Hope this helps,
Dario.- This reply was modified 6 years, 11 months ago by Darío Orlando Fernández.
Forum: Plugins
In reply to: [Regenerate Thumbnails] Images replaced in posts all wrongSame occurred to me yesterday at https://irachaleff.com
Forum: Themes and Templates
In reply to: [Customizr] INSERTAR TELEFONO Y ICONO EN HEADERAsunto delicado pero posible.
PRIMERO: Asumo que usas un child theme de Customizr. Si no es así, hazlo.
SEGUNDO: Has un backup del archivo functions.php de tu child theme.
TERCERO: Activa Font Awesome en Personalizar / Opciones Avanzadas / Iconos de portada / Cargar recursos de “Font Awesome”
CUARTO: En Apariencia / Editor abre el archivo functions.php de tu child theme e inserta el siguiente script debajo de donde dice
<?php
/**
* This is where you can copy and paste your functions !
*/add_filter('tc_tagline_text', 'replace_tag_with_button'); function replace_tag_with_button($content){ return '<i class="fa fa-phone"> número de teléfono</i> Tu desguace On-line de motocicletas'; }
Si algo falla, restaura el archivo functions.php resguardado.
Suerte,
Darío- This reply was modified 6 years, 11 months ago by Darío Orlando Fernández.
Forum: Themes and Templates
In reply to: [Hueman] Full screen mode toggle triggerUsed this script in page header
<script language=”JavaScript”>
// mozfullscreenerror event handler
function errorHandler() {
alert(‘mozfullscreenerror’);
}
document.documentElement.addEventListener(‘mozfullscreenerror’, errorHandler, false);// toggle full screen function toggleFullScreen() { if (!document.fullscreenElement && // alternative standard method !document.mozFullScreenElement && !document.webkitFullscreenElement) { // current working methods if (document.documentElement.requestFullscreen) { document.documentElement.requestFullscreen(); } else if (document.documentElement.mozRequestFullScreen) { document.documentElement.mozRequestFullScreen(); } else if (document.documentElement.webkitRequestFullscreen) { document.documentElement.webkitRequestFullscreen(Element.ALLOW_KEYBOARD_INPUT); } } else { if (document.cancelFullScreen) { document.cancelFullScreen(); } else if (document.mozCancelFullScreen) { document.mozCancelFullScreen(); } else if (document.webkitCancelFullScreen) { document.webkitCancelFullScreen(); } } } // keydown event handler document.addEventListener('keydown', function(e) { if (e.keyCode == 0 ) { // F11 key toggleFullScreen(); } }, false); // End --> </script>
To insert the script I used Header and Footer Scripts plugin.
Topic resolved.
Forum: Plugins
In reply to: [Polylang] page background image and page-idChanged the language oriented backgrounds to an unique background and solved localization in some other way. Topic closed.
Forum: Themes and Templates
In reply to: [Hueman] Multilanguage Home URLSolved using IP2Location Redirection.