waebi
Forum Replies Created
-
Forum: Reviews
In reply to: [Add From Server] Populates Media Library after migrationI join Wayne. I develope a 3 language website with tons of pictures.
“Add From Server” helped a lot to import the pictures from one language to the other. But unfortunately all the resized pictures are now indexed.
I’ll put Wayne’s suggestion in the wishlist.Forum: Themes and Templates
In reply to: [Hueman] Header don't look as Hueman ThemeHi Nadia,
Please tell me what is not OK with your header. On my screen it looks fine: “Discover Your Potential”.Cheers, waebi
Forum: Themes and Templates
In reply to: [Mantra] Cellular Color in TableSalut, je parle aussi la langue de Voltaire.
Il te faut créer un theme-enfant. Un bon mode d’emploi est décrit ici:
https://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorialEnsuite il te faut copier des lignes similaires comme celles ci-après dans ton nouveau style.css et jouer avec les couleurs.
/* =Tables
————————————————————– */
table, tbody, tfoot, thead, tr, th, td {
background-color: #FDE899 !important;
border: 0 !important;
margin: 0 !important;
padding: 0 !important;
}Forum: Themes and Templates
In reply to: [Mantra] Mantra theme link text color change.Simply create a child theme (e.g. mantha child).
Then create a new style.css in the child theme and add these lines:/* =Links
————————————————————– */
a:link {
color: #FF0000 !important; // red underlined link
text-decoration: underline !important;
}
a:visited {
color: #0D85CC! important; // blue underlined when visited
text-decoration: underline !important;
}
a:active,
a:hover {
color: #00AA00 !important; // green underlined when visited
text-decoration: underline !important;
}I did it just yesterday. If you do not know how to create a chil-theme, the check here:
https://www.elegantthemes.com/blog/resources/wordpress-child-theme-tutorialForum: Themes and Templates
In reply to: [Hueman] Facebook Sharer shows only linkI tested the plugin mentioned in above reply.
It doesn’t work. The facebook like buttons only promote a link to the page but no more picture and no more excerpt.I keep looking for a solution. If I find, I’ll post here.
Forum: Themes and Templates
In reply to: [Hueman] custom header background imageI first of all would like to thank Alexander for this outstanding theme.
I needed less than 24 hours to move everything from my old theme.Thanks also to Cindy. With her information it had been easy to create the background (header and body) I absolutely wanted.
My child css looks like this for now:
/*
Theme Name: Hueman Child Theme
Theme URI: https://www.silent-gardens.com/blog/wp-content/themes
Description: Hueman Child Theme
Author: rwx-support
Author URI: https://www.silent-gardens.com
Template: hueman
Version: 1.0.0
*/@import url(“../hueman/style.css”);
/* Put a picture in the header */
/*—————————- */
#header .pad {
padding-top: 28px;
padding-bottom: 30px;
}
#header {
background: url(bamboo-s.jpg);
position: relative;
padding-bottom: 60px; }If you like to have an idea:
https://www.silent-gardens.com/blog/Have a nice day
waebi