Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #1433013

    Hi there
    I need your help to adjust page

    how can I adjust the product name font and size?
    How can I make the background color to blue when hover
    20240205224022.jpeg

    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
    20240205225214.jpeg

    Thanks

    Wang

    #1433182

    Hey 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,
    Ismael

    #1433274

    Hi 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 regards

    #1433404

    Hi,

    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,
    Ismael

    #1433484

    Hi dear Ismael,
    it is add in enfold functions.php.
    i add in the end. but it donot work.
    QQ20240207220525.png
    kindly help

    #1433500

    more 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

    #1433645

    Hi,

    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,
    Ismael

    #1433693

    Hi 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 add

    Thanks

    Wang

    #1433754

    Hi,

    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,
    Ismael

    #1433966

    Hi Ismael,.
    we do not change anything of the theme
    it is not duplicated. it shows both Displayed Everywhere & another
    you can check

    #1434568

    Hi,
    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

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘portfolio catagory page adjust’ is closed to new replies.