Forum Replies Created

Viewing 30 posts - 31,801 through 31,830 (of 33,339 total)
  • Author
    Posts
  • in reply to: Post title category #803621

    Hi,
    Try adding this to the bottom of your functions.php file.

    function avia_default_title_filter($current_post)
    {
    	if(!empty($current_post['title']))
    	{
    		$heading = is_singular() ? "h1" : "h2";
    		$cat = get_the_category($current_post['the_id']);
    		$output  = "";
    		//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    		$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    		$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$cat[0]->cat_name;
    		$output .= "			<span class='post-format-icon minor-meta'></span>";
    		$output .= "	</a>";
    		$output .= "</{$heading}>";
    
    		$current_post['title'] = $output;
    	}
    
    	return $current_post;
    }
    

    Best regards,
    Mike

    in reply to: color #803620

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top #header_meta, .alternate_color, .socket_color {background-color: background: #1e5799;
    background: -moz-linear-gradient(left, #1e5799 0%, #0fa7d9 40%, #0fa7d9 40%, #2989d8 50%, #7db9e8 100%)!important; 
    background: -webkit-linear-gradient(left, #1e5799 0%,#0fa7d9 40%,#0fa7d9 40%,#2989d8 50%,#7db9e8 100%)!important; 
    background: linear-gradient(to right, #1e5799 0%,#0fa7d9 40%,#0fa7d9 40%,#2989d8 50%,#7db9e8 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=’#1e5799′, endColorstr=’#7db9e8′,GradientType=1 )!important; }

    Best regards,
    Mike

    in reply to: Text or logo on Fullwith Easy Slider #803616

    Hi,
    It looks like you are using the Full Width Slider, So open it in the editor, click one of the images, go to the caption tab and enter your text. Choose any other options you would like and save. Note at the bottom you have the choice to “Use first slides caption as permanent caption” should you only want one caption.
    Hope this helps :)
    postimage
    postimage
    postimage

    Best regards,
    Mike

    in reply to: GRIDROW DIFFERENT FORMAT ON TABLET SAMSUNG #803613

    Hi,
    I added this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 1440px) {
    span.avia-no-number, .avia-single-number, div.avia-animated-number-content {
      font-size: 12px;
      left: -10px;
      position: relative;
    }}

    Feel free to tweak the font-size to suit :)

    Best regards,
    Mike

    Hey uribinsted,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) {.avia-builder-el-8 {height: 1440px!important; }}

    The issue was the text box element had a height of 100% which was covering the images so they were not clickable in mobile :)

    Best regards,
    Mike

    in reply to: Select Custom Fonts #803595

    Hey sitesme,
    You can easily add google fonts, please refer to this link: https://kriesi.at/support/topic/new-custom-font/
    If you have a custom font or your own .ttf or .otf file, please refer to this link: http://css-tricks.com/snippets/css/using-font-face/
    Or you can try using this plugin http://wordpress.org/plugins/wp-google-fonts/

    Best regards,
    Mike

    in reply to: right and left distance #803592

    Hi,
    Try this code in the General Styling > Quick CSS field:

    .container {padding: 0px!important; }

    Best regards,
    Mike

    Hey DROR,
    Are you still having this issue? I could not recreate.
    postimage
    postimage

    Best regards,
    Mike

    in reply to: Post title category #803586

    Hey FlatText,
    Are you saying that the post title “Navigating through change” is not relevant, and you wish it matched that category “Banking, Financial services, Publications” ?

    Best regards,
    Mike

    in reply to: Text or logo on Fullwith Easy Slider #803584

    Hey geotectives,
    Do you mean on a layer in the slider? Can you create a screenshot of what you mean with your url?

    Best regards,
    Mike

    Hi,
    Perhaps I don’t understand the issue, because I’m have no issue with scrolling the popup on the site.

    Best regards,
    Mike

    in reply to: color #803579

    Hi,
    Can you please create a gradiant that you like and paste the code, we can help with using it in those elements.
    Best regards,
    Mike

    in reply to: woocommerce outdated templates #803576

    Hi,
    Try downloading the newest version: 3.0.7 and updating your child theme via FTP.
    Be aware if you have made custom changes to them your changes will be lost.
    I recommend backing up with https://wordpress.org/plugins/duplicator/

    Best regards,
    Mike

    in reply to: Mobile Version Woocommerce Not full Screen #803462

    Hi,
    OK, I changed the code to this:

    @media only screen and (max-width: 767px){
    .responsive #top .products .product:nth-child(2n+10) {
        clear: both!important; 
    }
    .responsive #top .products .product:nth-child(2n+12) {
        clear: initial!important; 
    }}

    and now it’s working :)

    Best regards,
    Mike

    Hey bemodesign,
    Try this code in the General Styling > Quick CSS field:

    @media only screen and (min-width: 425px) { 
    h2.avia-caption-title {font-size: 15px!important; }
    .avia-caption-content {font-size: 10px!important; }
    .av_slideshow_full .container.caption_container {top: 80%!important; }
    #top .avia-slideshow-button {padding: 1px 5px 1px 5px!important; margin-top:1px!important}
    }
    @media only screen and (min-width: 767px) and (max-width: 1020px) { 
    h2.avia-caption-title {font-size: 25px!important; }
    .avia-caption-content {font-size: 12px!important; }
    .av_slideshow_full .container.caption_container {top: 30%!important; }
    #top .avia-slideshow-button {padding: 5px 5px!important; }
    }
    @media only screen and (min-width: 1023px) { 
    .av_slideshow_full .container.caption_container {top: 25%!important; }}

    Best regards,
    Mike

    in reply to: Custom secondary menu #803454

    Hi,
    Glad to hear, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Unterschiedliche breiten der Sidebar #803453

    Hi,
    Great point Guenni007 :)

    Best regards,
    Mike

    in reply to: Black Bar with // above Site #803450

    Hey Mdmoisell,
    Try looking at the code you put in and removing the //

    Best regards,
    Mike

    in reply to: CSS Overlay on Fullscreen Slider #803446

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: woocommerce outdated templates #803445

    Hi,
    Have you tried updating the files in your child theme via FTP? Your report shows the path, be aware if you have made custom changes to them your changes will be lost.
    I recommend backing up with https://wordpress.org/plugins/duplicator/

    Best regards,
    Mike

    in reply to: Mobile vs. PC Display #803444

    Hi,
    Sorry there is no setting for that. Glad to hear the css works for you, is there any adjustments or shall we close this now?

    Best regards,
    Mike

    in reply to: color #803442

    Hey Candratech,
    You could try a custom gradient generator such as this: http://www.colorzilla.com/gradient-editor/

    Best regards,
    Mike

    in reply to: Mobile Version Woocommerce Not full Screen #803437

    Hi,
    It’s because it wants to be two columns and we made it 3, we will fix it :)
    but first we need to know how many elements you will end with because it will change. Are you going to keep “Product Sets”? are you going to add more?

    Best regards,
    Mike

    in reply to: CSS Overlay on Fullscreen Slider #803434

    Hi,
    Have you tried the Slide Overlay option in the fullscreen slider?
    If you go to edit a image in the slider, look at the last tab.
    postimage

    Best regards,
    Mike

    in reply to: woocommerce outdated templates #803430

    Hi,
    Where do get this error?

    Best regards,
    Mike

    in reply to: CSS Overlay on Fullscreen Slider #803424

    Hey vadikcoma,
    Please include the url to the page in question so we can take a closer look.

    Best regards,
    Mike

    in reply to: About content padding #803422

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Column ID (CSS) #803419

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Mobile Version Woocommerce Not full Screen #803417

    Hi,
    I take it then that the last category is not one your keeping, in that case go ahead and remove it and try this:

    @media only screen and (max-width: 767px){
    .responsive #top .products .product:nth-child(2n+10) {
        clear: left!important; 
    }}

    Best regards,
    Mike

    in reply to: Compare Blog Post #803413

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 31,801 through 31,830 (of 33,339 total)