Forum Replies Created
-
AuthorPosts
-
Hey Richard!
Thank you for using our theme.
Can you send us a link to your page please?
Best regards,
GünterHey!
Thank you for your update.
If it works, it is fine and a good solution.
Glad if we could help you.
Cheers!
GünterHi Ed!
Thank you for using our theme.
In custom.css or Quick CSS fielld and adjust the value of px:
.single-post .entry-content-wrapper .entry-content-header{ margin-bottom: -10px; } .archive .content .post{ margin-bottom: -10px; }
This reduces the distance on every single post page and between on archive pages.
Cheers!
GünterHey!
Using this type of header it is not possible to upload a larger logo, because it is resized via java script on scrolling. This is a limitation of the theme.
Regards,
GünterHi twdlewis!
You are outputting a string and not the value of a variable.
Regards,
GünterHey!
Thanks for the update.
Can you send us the link to the page?
Best regards,
GünterHey ThomasWitzany!
Thank you for using our theme.
Open functions.php and goto line 91.
If you are using a child theme, you can put your changes also in functions.php, bot need an action hook:
add_action ('init', 'my_custom_sizes', 99); function my_custom_sizes() { global $avia_config; put your changes here }
Cheers!
GünterHey wintner!
Thank you for using our theme.
1)
Currently there is no easy possibility to avoid this space. Would need changes in the core files.Put the following in custom.css or Enfold->Styling-> Quick CSS field to hide ALL inages:
.home article .blog-meta{ display: none; }
2)
The image sizes used in the templates are predefined (see functions.php line 91ff). When uploading images WP automatically does the resizing. Best way if you are not satisfied is resizing images manually and then uploading.Regards,
GünterHallo,
Das ganze liegt in einem <p> block (Bild und Text). Damit fließt der Text um das Bild – das geht nicht anders.
Den Abstand kann man setzen im tag mit:
<img ........ style="margin-bottom: 10px; margin-right: 18px; float: left;">
Cheers!
GünterHi!
Thanks for coming back.
Sorry, but the theme does not support this by default.
It can be implemented, but this is customization and is beyond the scope of support.
If you are interested, you can you can hire a freelancer or send me an email at (Email address hidden if logged out) and I can give you a quote.
Regards,
GünterHallo Sascha,
Ich habe hier einen Link – vielleicht beantwortet der Deine Frage:
http://little-boxes.de/lb1/13.1-text-um-bilder-fliessen-lassen.html
Besser wäre eine konkrete Seite – hast Du einen link?
Fals es so wie im 2. Bild aussehen soll, geht das nur mit 2 <div>, die in einem umgebenden <div> liegen.
LG
GünterHallo sascha-Juliot
Der Code passt, nur folgendes fehlt noch:
In custom.css oder Enfold->Styling in Quick CSS:
.avia-testimonial-image{ height: 180px; width: 180px; }
Regards,
Günter- This reply was modified 10 years, 6 months ago by Günter.
Hi!
This should do for the 2 pages above.
.page-id-3036 .widget_nav_menu, .page-id-3016 .widget_nav_menu{ display: none; }
Best regards,
GünterHi!
Danke für die Info, war ein Tippfehler von mir.
Freut mich, dass wir helfen konnten. Viel Freude mit dem Theme.
LG
GünterHi!
As far as I see in the code, the default magazine query is only by date descending. See enfold/config-templatebuilder/avia-shortcodes/magazine.php Line 366ff.
We also have a chance to hook into the query parameters, if it does not work:
line 388: apply_filters(‘avf_magazine_entries_query’, $query, $params);
Best thing you try and if you encounter problems, we can take a closer look.
Best regards,
GünterHi frankwelschlehmann!
Thank you for using our theme.
Can you send us a link to the page please.
We can then provide you with the CSS solution.
Cheers!
GünterHey RestyleXL!
Thank you for using our theme.
ad 1)
Put the following in custom.css or Quick CSS to remove from all pages..avia-menu{ display: none; }
If you want to remove only from certain pages you can specify the page id (you find in HTML Code in the <body> tag (e.g.):
.page-id-3036 .avia-menu{ display: none; }
ad 2)
Put the following in custom.css or Quick CSS:
.slideshow-window{ border: 20px solid white !important; }
Regards,
GünterJuly 10, 2014 at 12:42 pm in reply to: Help aligning Video Testimonials in the Content Elements>Testimonials #289432Hey artemrepin!
Thank you for using our theme.
The link you gave us does not work. You will have to publish the page so we can access it.
Regards,
GünterHi Welmoed!
Thank you for using our theme.
Open file
enfold/config-templatebuilder/avia-shortcodes/postslider.php and find line 383:$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$commentCount} {$text_add}</a></div><div class='slide-meta-del'>/</div>";
Replace this with:
$output .= "<div class='slide-meta-comments'><a href='{$link}{$link_add}'>{$text_add}</a></div><div class='slide-meta-del'>/</div>";
Best regards,
GünterHi Zeng!
Thank you for using our theme.
Place in custom.css or Quick-CSS field the following code:
body { font-family: Arial, sans-serif !important; }
Regards,
GünterHallo sascha-Juliot
Ja, kann man ändern:
In functions.php am Ende folgenden Code einfügen und xxx mit einer definierten image size ersetzen (80*80 ist thumbnail):
add_filter ('avf_testimonials_avatar_size', 'my_avatar_size', 10, 3); function my_avatar_size($size, $src, $class) { $size = 'xxxx'; return $size; }
Regards,
Günter -
AuthorPosts