Forum Replies Created

Viewing 30 posts - 3,151 through 3,180 (of 11,529 total)
  • Author
    Posts
  • The whole thing wouldn’t be so bad if the first value in the ALB element didn’t override the default values of the Enfold options under Advanced Options: Customize Typography Settings.
    So if values are changed in the ALB, only the values for the corresponding screen width should be changed – and no new default value should be set.

    if this is important for me to have a more responsive design on font-sizes – i use often the clamp method
    see the heading on page: https://webers-testseite.de/heading-with-fluid-font-size/

    one big disadvantage on that – you had to think of column-width – because the middle font-size definition is related to screen-width.
    but a 1/2 column only got 50vw of total place … and after colaps it has that 100vw again.

    So a perfect simple solution is not in sight. Customized solutions are then sought after. For headings that are positioned within a full-width container, one can take the min – max solution.
    You can see here a nice font-size calculator to get this css definition:
    https://websemantics.uk/tools/responsive-font-calculator/

    Yes – i can confirm this for headings
    on that test page i choose under styling tab : 48px and for the next ( 768-989) 40px and let the rest to default.

    So – I can confirm that. Strangely enough, it is also there as it is.

    The first setting defines the “Default Size”. I think this is not how it should be interpreted. The format should be set there for large screens.
    Or one takes it in fact here around the default to specify, it can be overwritten then in the following with another setting and if one leaves it on “default” with the smaller screen widths it is defined there relative (thus 480px to 767px) on 50% then the smaller screens accordingly smaller.

    https://webers-testseite.de/responsive-font-behavior/

    in reply to: Image is being cropped out awkwardly #1354481

    first – please try my approach from above. When inserting the image, choose the right source right away, namely the Full Image.

    ________________
    Now to your legitimate question (even if you always come out with the details only part by part).
    On my test page, the full image is still displayed with your setting – even when i insert the smaller source image. But there I’m already testing a newer beta version of Enfold. I will now run the same test on a current Enfold version to see if it is the same there.
    Edit same here with Enfold 4.9.2.3 the image isn’t cropped when choosing on styling tab : No scaling (…)
    So there must be something with your installation – on both testing pages the non-cropped image is shown in backend.
    allthough i’m seeing this in backend preview:

    But please try the other method first if that helps to have the non-cropped version

    PS: you link to the page was forced redirected – i could not see that page.

    in reply to: how to change or delete inline-style-attributes #1354367

    i do not see any tab-section on that page – the ID has changed too. So can you correct the link to that element it is concerning too – or make a screenshow what you like to change.

    there is that one snippet for child-theme functions.php :
    ( it turns from inline css to internal css )

    function custom_avf_post_css_create_file( $create ){
    	return false;
    }
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );

    After that the inline css will be not there ( it changes to Internal CSS ) – and the styles are placed before the container as <style …>…</style> which is then included to merged styles.

    in reply to: Body text in uppercase #1354356

    how do you place the text to your layout. Are you working with the advanced layout builder of enfold ?
    in this case you open f.e. the column in which your text element is placed – and open the tab on top: Advanced – on that tab you have those input fields in the developer section for IDs or custom-classes – insert alluppercase to that custom-class field ( without dot )
    Or directly to the text-block alb element itself.
    If you want to change all texts in a color-section – go to that advance tab to insert the class.

    If you completely want to change the whole Text in your installation then use it without that class:

    .responsive #top #wrap_all  {
      text-transform: uppercase !important
    }

    because of the two ID’s within this rule and the Important setting, it will mostly prevail against existing css rules that state differently.

    in reply to: Change "Read more" text in blog #1354352

    You can of course edit all loop files that are affected and upload them as child-theme files.
    Unfortunately, this is quite a lot of places to change, due to the fact that we have different cases here.
    (Business-, Elegant-, Business-modern Blog) and that in loop-index.php, loop-portfolio-single.php etc.

    but you can try this substitution via gettext:

    function my_text_strings( $translated_text, $text, $domain ){
    switch ( $translated_text ){
        case 'Read more'    :  $translated_text = __( 'Read more of it', $domain ); break;
         // in case you got different languages on your page and want to change them too:
        case 'Weiterlesen'  :  $translated_text = __( 'Mehr über das Thema …', $domain ); break;
      }
      return $translated_text;
    }
    add_filter('gettext', 'my_text_strings', 20, 3);
    in reply to: Display metadata in Blog Posts (Grid Layout) #1354321

    maybe this could help you:
    https://kriesi.at/support/topic/how-to-add-associated-tags-to-each-blog-post-using-the-blog-post-widget/#post-1353460

    the code provided is only – if you choose on that options page to show tags. If you like to have it anyway change the if clause

    // from:
    if('blog-meta-tag' == avia_get_option('blog-meta-tag') && $tags ){
    // to:
    if($tags ){
    in reply to: remove "by" in the author line of blog post #1354315

    in loop-index.php you have that filter : avf_show_author_meta search for it – one of the next lines is:

    $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
    

    there is the linking word : by
    so my advice is to have a child-theme loop-index.php
    edit that line to :

    $meta_author  = '<span class="blog-author minor-meta">';
    

    and create a child-theme subfolder called : includes and put a version of that edited loop-index.php inside it.

    PS: if you like to have the same on author loop – look at loop-author.php
    search there also for the same filter name and change this line in a similar way – proceed with the changed copy in the same way.

    in reply to: Slide show image cut at the edge #1354313

    @HulaSlim : If something is fixed in height but needs to respond to decreasing widths, then there are only two options. Either the image is distorted or cropped, regardless of the original aspect ratio. That’s exactly what the full-width slider is for – to adjust the height according to the screen width. This is what the word responsive means.

    in reply to: Slide show image cut at the edge #1354289

    What kind of slider you are using?

    in reply to: Column widths of table #1354287

    But you thought of setting the custom-class as well? how it is named is up to you.
    Otherwise i would need to see the page – if you could send me the link, I will look for a solution. Just keep in mind that I can not see the private content fields.

    in reply to: Image is being cropped out awkwardly #1354190

    look here on a test page the “entry without sidebar” will show your exact Image section
    https://webers-web.info/mediation/

    in reply to: Image is being cropped out awkwardly #1354186

    my question was if you have inserted that full size image to the image alb element.
    That you have uploaded the non cropped image is clear to me.
    I also sometimes select the image on the left, but do not pay attention to what was preselected in the selection on the right. Then one of the possibly recalculated other images is used as source.
    That shown screenshot seems to be the 748×423 image:

    in reply to: Progress bar preset color changing ? #1354132

    now i know what is your request. ( it would be better to have an english screenshot on that ) hard to read for a german user your image
    the list of those colors to choose is in class-popup-templates.php

    at lines 1473ff there is an array: colored:

    $colored = array(
    	__( 'Theme Color', 'avia_framework' )			=> $theme_col_key,
    	__( 'Theme Color Highlight', 'avia_framework' )	=> 'theme-color-highlight',
    	__( 'Theme Color Subtle', 'avia_framework' )	=> 'theme-color-subtle',
    	__( 'White', 'avia_framework' )		=> 'white',
    	__( 'Blue', 'avia_framework' )		=> 'blue',
    	__( 'Red',  'avia_framework' )		=> 'red',
    	__( 'Green', 'avia_framework' )		=> 'green',
    	__( 'Orange', 'avia_framework' )	=> 'orange',
    	__( 'Aqua', 'avia_framework' )		=> 'aqua',
    	__( 'Teal', 'avia_framework' )		=> 'teal',
    	__( 'Purple', 'avia_framework' )	=> 'purple',
    	__( 'Pink', 'avia_framework' )		=> 'pink',
    	__( 'Silver', 'avia_framework' )	=> 'silver',
    	__( 'Grey', 'avia_framework' )		=> 'grey',
    	__( 'Black', 'avia_framework' )		=> 'black',
    );

    but these are only for named colors
    but i do not know if there is a child-theme method to add to that dropdown-list some custom colors.
    maybe the filter : avf_alb_popup_templates_named_colors could be used for that

    in reply to: Column widths of table #1354117

    i do not see your table but if there are headings on it – do not forget to style them too:

    .custom-class table tbody tr td:nth-of-type(1),
    .custom-class table thead tr th:nth-of-type(1) {
        width: 22% !important;
    }
    .custom-class table tbody tr td:nth-of-type(2),
    .custom-class table thead tr th:nth-of-type(2) {
        width: 58% !important;
    }
    .custom-class table tbody tr td:nth-of-type(3),
    .custom-class table thead tr th:nth-of-type(3) {
        width: 20% !important;
    }

    PS : there are no other elements in between – so nth-child( ) will do the job too !
    And: on enfold demo page i see that the headings are sometimes in tbody ( not thead ) too – then it will be:
    .custom-class table tbody tr th:nth-of-type(x)

    the code from the first lines shows you that there has been a newer file now – and this is only for older masonry

    next – yes thats what i try to describe.
    If you do have ftp access, what’s the harm in putting a modified file there and seeing if my claim works. This is not Star Trek and the self-destruction mechanism is triggered. If it doesn’t work then you take the whole thing out of the folder. (If it doesn’t work, it is rather because of the made change within the file – because I always test my assertions before).
    That was a substitution of a parent file inside the shortcodes – so it is not necessary to build the same folder structure.
    If you substitute a file inside e.g. includes folder – there it might be better to build the same subfolders to your child-theme directory.

    in reply to: Image is being cropped out awkwardly #1354106

    And you realy pay attention that you have inserted a non cropped image in the image alb element?

    in reply to: Lightbox is not working #1354035

    did you choose to open that image in lightbox?
    Under the advanced tab of the image alb element there is that Link option:

    in reply to: Customize Hospot-Tooltip #1354025

    the setting on default is:

    .avia-tooltip .inner_tooltip {
      font-size: 0.925em;
      line-height: 1.65em;
    }
    in reply to: wrong name for PDF #1354023

    where did you generate those pdf’s ;)
    look if that document is called LAYOUT1

    if you got Acrobat ( not the reader ) you can change it there.
    Or on your pdf generating program ( QuarkXPress ) you can name it on exporting.

    PS: only chrome i think is showing that dokument name on top of the window. ( Firefox and Safari don’t )

    in reply to: Progress bar preset color changing ? #1354006

    you can create your own custom color set online here: https://wpadmincolors.com

    the snippet comes to your child-theme functions.php
    and the downloaded css file in your root directory of your child-theme ( where the style.css of your child-theme is located )

    i do not know where your dropdown list ( from your screenshot ) can be seen. Is it a plugin you use for that ?

    I do set up the admin color schemes on Users – Profile – go to your profile then and choose now the custom profile:

    in reply to: WordPress Enfold site loading very slow #1353990

    if you are familiar with phpmyadmin – you can have a look into your database tables and look if there is a lot of “overhang”
    you can optimize those tables inside that program.

    What is my advice now for you. Test duplicator plugin – create those two files – upload it to a testserver and with a new database and see if that is the better way. After a positive result – go and try it on your customer server.

    in reply to: WordPress Enfold site loading very slow #1353987

    as for the migration tools: some of them work well – others do not. I don’t know this plugin – but sometimes it is necessary to do some rework.

    So, for example, if you notice link problems, it is because the new domain has not been correctly exchanged everywhere. Especially with subdomain installations or installations in subfolders this can happen.
    In these cases I check this – and then take plugins for this for convenience. f.e.: Search & Replace and link to Plugin: Link
    here you can search the database for terms – without any changes first. So e.g. whether there is still the term: https://contracosta.cobaltsapphire in the database.

    I prefer Duplicator – and even in the free (not pro) version it is a powerful tool. It creates two files – an installation file and a compressed data file ( zip by default – but later for very large installations it switches to its own file format : dup ). Both files are copied to the new server and the installation can be started. Only the new server data ( database etc. ) will be entered. I never had such problems with this.

    Nevertheless – also this tool does not transfer the htaccess file ( by the way – never a theme file ) to the new server. It creates a standard htaccess file and saves the original one as htaccess.bak file. And this is smart, because just this file can contain very server specific settings, which may not be valid on the new server.

    Some words to performance: png files are nice to have if needed, but they are absolutely not always necessary. All image files that do not rely on transparencies should at least be replaced by jpgs. If you look at this actually tiny file in comparison:

    Uploading image files larger than 2560px is not necessary, as WordPress does not use them anyway. It converts such files to the 2560px and saves them as xyz-scaled.jpg. Now this is not a performance problem, but it inflates the storage space of the upload folder unnecessarily.

    PS: the link on the org domain has an extreme TTFB value ( time to first byte) see gtmetrix: Link in comparison to : Link
    This is concerning to server response time. You see on the waterfall chart ( link ) that the page itself does not load slow. it is that enormous time waste at the beginning.

    in reply to: Youtube media player not working #1353967

    but it has to work even with file compression.
    https://webers-web.info/videos/#forcetec
    so there must be a different reason on that.

    But as said above – you can add it and then obfuscate it – to preserve the layout

    in reply to: Progress bar preset color changing ? #1353960

    if you are familiar with developer tools you can inspect even the admin window on your browser to get the selectors used there.
    with a snippet in your child-theme functions.php you can change the admin area as you like:

    f.e.:

    function admin_head_mod() {
    echo '<style type="text/css">
    	#adminmenu, #adminmenuback, #adminmenuwrap { background: #431781;}
    	// … and more rules
    </style>';
    }
    add_action('admin_head', 'admin_head_mod');
    in reply to: Progress bar preset color changing ? #1353958

    if you open that progress-bar alb element – you see this –

    both entries could be clicked again – and a new popup will arise. On this you have the styling mode of each progress par – including colors

    Guess the default color will be the theme-color – and this is set on enfold options : general styling : primary color
    ( this is dependent on if the element is main content or alternate content etc. )

    2) what do you mean by admin panel – what do you like to change there ?
    Do you mean on dashboard – users – your profile: the admin color scheme ?

    in reply to: Issues with bundled Layerslider #1353957

    Enfold provides some additional image sizes to have for their alb elements a better choice.
    in functions.php of enfold there are:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] 		 	    = array('width'=>180, 'height'=>180);		                 // small image for blogs
    $avia_config['imgSize']['featured'] 		 	= array('width'=>1500, 'height'=>430 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['featured_large'] 		= array('width'=>1500, 'height'=>630 );						// images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] 		 	= array('width'=>1500, 'height'=>1500 , 'crop' => false);	// images for fullscrren slider
    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] 		 		= array('width'=>845, 'height'=>684 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['magazine'] 		 	= array('width'=>710, 'height'=>375 );						// images for magazines
    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>845, 'height'=>321);		            	// big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 );						// images for fullsize pages and fullsize slider

    you see that there is featured and featured image and extra_large …

    Now is you put an image to your layout or insert to an alb element ( masonry gallery, gallery etc. ) there are default insertions for them.
    But you can allways change them by the alb options.
    See masonry gallery f.e.:

    in reply to: Body text in uppercase #1353953

    i would do this with a custom-class that you set in your quick css:
    f.e.: alluppercase

    
    .responsive #top #wrap_all .alluppercase {
      text-transform: uppercase !important
    }

    if you like to have this in your layout – put to the alb itself – or to one parent element that custom-class.
    For special positions ( like footer widgets etc. you had to know that selector then – because there are no possibilities to set a custom-class.

    But
    : keep in mind that on internet writing all in uppercase mode : UPPER CASE LOOKS AS IF YOU’RE SHOUTING! ;)

Viewing 30 posts - 3,151 through 3,180 (of 11,529 total)