-
AuthorPosts
-
February 5, 2024 at 4:13 pm #1433013
Hi there
I need your help to adjust pagehow can I adjust the product name font and size?
How can I make the background color to blue when hover
In the portfolio catagory page, like
https://www.wlhtex.com/en/products/100-polyester-warp-knit-fabric/
how can I make square same as product page
and how can I change the Widgets in these pages
Thanks
Wang
February 6, 2024 at 7:35 am #1433182Hey Yaphoon,
Thank you for the inquiry.
You can use this css code to adjust the style of the masonry title.
.av-masonry-entry .av-masonry-entry-title { line-height: 1.3em; margin: 0; font-size: 20px; font-family: Verdana; }
To adjust the hover color of the menu button, add this.
#top #wrap_all .header_color #menu-item-174:hover > a .avia-menu-text { background-color: #3f75e9; color: #ffffff; border-color: #3f59e9; }
And to adjust the size of the images in the archive pages, you have to edit the enfold/taxonomy-portfolio_entries.php and adjust the parameters in the avia_post_grid instance around line 38.
$grid = new avia_post_grid( array( 'linking' => '', 'columns' => '3', 'contents' => 'title', 'sort' => 'no', 'paginate' => 'yes', 'set_breadcrumb' => false, 'preview_mode' => 'custom', 'image_size' => 'full' ));
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelFebruary 6, 2024 at 1:54 pm #1433274Hi Ismael,
Thanks for your kind support.
Very nice.
And hope you can support
1. How can I change the Widgets in these pages’ sidebar
2. And I have same question in tag page. Could you pls help in adjusting the size of the images in the tag pages and change the widgets in sidebar
Thanks and best regardsFebruary 7, 2024 at 7:16 am #1433404Hi,
Thank you for the update.
1.) You can change the content of the sidebar by adding widgets to the Displayed Everywhere widget area in the Appearance > Widgets panel.
2.) And to adjust the images in the tag pages, please add this filter in the functions.php file.
add_filter("avf_post_slider_args", function($atts, $context) { if( $context == "tag" ) { $atts['preview_mode'] = 'custom'; $atts['image_size'] = 'full'; } return $atts; }, 10, 2);
Again, if you have any additional questions, please open a separate thread for each inquiry. Thanks!
Best regards,
IsmaelFebruary 7, 2024 at 3:06 pm #1433484Hi dear Ismael,
it is add in enfold functions.php.
i add in the end. but it donot work.
kindly helpFebruary 7, 2024 at 3:58 pm #1433500more question
1.) You can change the content of the sidebar by adding widgets to the Displayed Everywhere widget area in the Appearance > Widgets panel.now some page show 2 team, including displayed everywhere and other
pls see
i need remove the Displayed Everywhere widget
Thanks
February 8, 2024 at 10:46 am #1433645Hi,
1.) Did you install any plugins related to the sidebar or widgets? The widgets should NOT be duplicated by default.
2.) We recommend installing a child theme and place the filter in the child theme’s functions.php file. You can also try to add the filter around line 51, just below this code.
if( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }
Best regards,
IsmaelFebruary 8, 2024 at 2:33 pm #1433693Hi Ismael,
I do not know the reply is for question 1 or 2
1. the tag page picture size need full size, need show my picture full company logo
2. in some page, the sidebar show 2 piece widgets ( Displayed Everywhere & another )if( isset( $avia_config['use_child_theme_functions_only'] ) ) { return; }
this code do not work, when i add in Child theme.
Did you install any plugins related to the sidebar or widgets? The widgets should NOT be duplicated by default.
no, i do not addThanks
Wang
February 9, 2024 at 6:24 am #1433754Hi,
Thank you for the info.
We are not yet sure why the sidebar is duplicated. Did you modify any of the template files? Please provide the S/FTP details in the private field so that we can access the theme files. The Appearance > Theme File Editor is not accessible, so we were not able to check the modification.
We recommend installing a child theme so that you can move the modifications there.
// https://kriesi.at/documentation/enfold/child-theme/
Best regards,
IsmaelFebruary 11, 2024 at 10:29 am #1433966Hi Ismael,.
we do not change anything of the theme
it is not duplicated. it shows both Displayed Everywhere & another
you can checkFebruary 17, 2024 at 1:17 pm #1434568Hi,
Thanks for your patience, when I check your Displayed Everywhere widget is empty, so I assume that you have sorted this out.
Please note that we ask that each thread stays on a specific topic, this helps us provide better support and helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread fir each specific issue
Thank you for your patience and understanding and for using Enfold.Best regards,
Mike -
AuthorPosts
- The topic ‘portfolio catagory page adjust’ is closed to new replies.