Forum Replies Created
-
AuthorPosts
-
Hey!
Use the following and adjust the value:
.product .price{ font-size: 15px; } .cart_dropdown_link span{ font-size: 25px; }
Best regards,
GünterHi!
Please have a look at this post:
https://kriesi.at/support/topic/social-icons-in-footer-socket/
I think, it will answer your question.
Best regards,
GünterHey tylrsmllr!
Thank you for using our theme.
In custom.css or Enfold->Stylings->Quick-CSS field try to put the following and adjust the values:
.avia-testimonial .avia-testimonial_inner{ font: }
If it does not work give us a link to the page please.
Cheers!
GünterHey cindy531!
Thank you for using our theme.
You have to modify a theme file. If you are using a child theme, copy enfold/includes/loop-index.php to the corresponding child theme fiolder enfold-child/includes/, otherwide modify the original file:
// goto line 165: echo '<span class="blog-categories minor-meta">'.__('in','avia_framework')." "; echo $cats; echo '</span><span class="text-sep text-sep-cat">/</span>'; // and replace with: echo '<span class="blog-categories minor-meta">'; echo $cats; echo '</span>';
Best regards,
GünterHey!
Thank you for using our theme.
This seems to be a problem of WooCommerce plugin.
Maybe you can report it to WooCommerce Support https://support.woothemes.com/hc/en-us.
Regards,
GünterJuly 22, 2014 at 10:02 am in reply to: Child functions.php Not Overriding Parent functions.php #294247Hey Luis!
Thank you for using our theme.
If you are using cross domain action call this might make problems. Check the following article:
http://stackoverflow.com/questions/8497609/html-form-post-cross-domainFor the same domain it should work.
Cheers!
GünterHey!
To alter the styles of the second table put in custom.css or Endold->Styles->Quick-CSS field the following and adjust the values:.avia-table-2 tr:nth-child(2), .avia-table-2 tr:nth-child(4), .avia-table-2 tr:nth-child(6) { background: #e1e1e1 !important; } .avia-table-2 tr{ font-size: 12px !important; }
For the first table use .avia-table-1.
Cheers!
GünterHi BarkProductions!
Thank you for using our theme.
At the moment radio boxes are not supported. It may be added in future releases.
Regards,
GünterHi!
There is currently no support for this in the advanced styling menu.
Please referr to this post:
https://kriesi.at/support/topic/menu-hover-color-heading-font-size-remove-borders/Come back on further questions.
Regards,
GünterHey Geoffdoyle!
Thank you for using our theme.
In custom.css or Enfold->Styling->Quick-CSS field put the following code and adjust px value for border width:
.grid-entry article > a{ border: 2px white solid; }
If this does not work can you give us the linkl to the page please?
Cheers!
GünterHey Geoffdoyle!
Thank you for using our theme.
Can you give us the link to the page you want to change?
Best regards,
GünterJuly 21, 2014 at 10:28 am in reply to: Child functions.php Not Overriding Parent functions.php #293767Hi Webbee!
Thank you for using our theme.
The problem is, that functions.php from the parent themes overwrites your settings of the child them, because it is loaded after your code.
You have to put your code in the child theme in an action hook:
function my_image_size() { global $avia_config; $avia_config['imgSize']['entry_with_sidebar'] = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries } add_action('init', 'my_image_size', 1);
Regards,
GünterHi studioinktvis!
Thank you for using our theme.
Try to put the following in custom.css or Enfold->Settings->Quick-CSS field:
.avia-menu-fx { display: none; }
Best regards,
GünterHey xyzb!
Thank you for using our theme.
Can you give us a link to the page and an admin login, so we can check?
Regards,
GünterHallo gowapi!
Danke dass Sie unser Theme benutzen.
Können Sie uns bitte den Link zu der Seite geben und auch einen admin login, damit wir uns das anschauen können?
LG
GünterHey!
Thank you for using our theme.
Can you send us a link to your page(s) so we can check?
Shall this be done on all pages or only certain pages.
Cheers!
GünterHey cindy531!
Thank you for using our theme.
In custom.css or Enfold->Styling->Quick-CSS field put the following and adjust the color value:
form input{ border-color: #a2a2a2; }
Regards,
Günter- This reply was modified 10 years, 6 months ago by Günter.
Hi motylanogha!
Thank you for using our theme.
To get the categories for a post:
$post_categories = wp_get_post_categories( $id ); $cats = array(); foreach($post_categories as $c){ $cat = get_category( $c ); $cats[] = $cat->name; } $args['title'] = implode (',', $cats);
Regards,
GünterHey cbehen!
Thank you for using our theme.
Widgets are specially designed for the widget areas.
Some provide a shortcode, others not.
If you do not find something in the documentation you can look in the code for:
add_shortcode( ....... );
In this case you can use a shortcode to activate the widget on a page.
See also: http://codex.wordpress.org/Shortcode_API
Regards,
GünterHi srmathis!
Thank you for using our theme.
In custom.css or Enfold->styling->Quick-CSS field put following:
.avia_combo_widget .news-headline{ color: #fff; }
Best regards,
GünterHi costin!
Thank you for using our theme.
In Custom.css or Enfold->Styling->Quick CSS field put the following:
.home .avia-builder-el-10{ margin-top: 0 !important; }
Regarding background image:
Can you give us an admin access so we can check your settings or send us a screenshot of the settings page with the footer?
Best regards,
Günter- This reply was modified 10 years, 6 months ago by Günter.
-
AuthorPosts