Forum Replies Created

Viewing 30 posts - 10,021 through 10,050 (of 10,882 total)
  • Author
    Posts
  • in reply to: Image title displaying on Fullwidth Easy Slider #654948

    if you like to have a title tag on each image and the title tag of that specific image does not change. you can give it on dashboard/media/
    a title-attribut and an alt-attribut

    in reply to: Image title displaying on Fullwidth Easy Slider #654942

    but titles on fullwidth slider do allway move in – not a matter on hovering it.
    By the way – the text moves in the image is not a “title-tag” but a caption and is placed as a h2-tag

    if you want to set it up but not to display you can not choose display: none for it because you want it readable for bots.
    i’m not shure if bots do read content which is set to visibility: hidden

    .avia-caption-title {
        visibility: hidden !important;
    }

    the text-indent option often is a nice but i think from googles point of view “spam-like” behaviour:

    .avia-caption-title {
         text-indent: -5000px;
        animation: none  !important;
    }
    in reply to: Problem with images #654936

    The fb-root id of the div above is indeed part of enfold but normaly it is empty and closed by default with no content.

    But after that there are a lot of containers ( and with identical ids “lightbox”) – these are completely – so you might have done with that page.
    Hope the mods here on board with admin access on your site may help

    in reply to: Problem with images #654930

    hm this:

    in the brackets is not part of enfold structure.
    So – you are using on that page iframe parts – maybe these iframe pages infiltrates your page with additional js and other code.

    this “Need great content” is it a headline? because on standard (not modern or classic) headline there is a small line at the right side of the headline.

    you can get rid of that line by using style “modern left” or by:

    .special-heading-inner-border {
        display: none
    }

    if you only want to get rid on that page you must be more specific on that case ( page-id, or you set for that color-section a class)

    in reply to: Problem with images #654690

    try to deactivate all your plugins and have a look if these images are still there.
    If not than reactivate step by step your needed plugins and have look after each reactivation.

    these images are out of wrap_all container of enfold – so maybe you have installed a plugin which does this effekt (intro ?)
    or a customised lightbox plugin (than uncheck perhaps on Enfold Options the “Lightbox Modal Window”)

    in reply to: Add 2 horizontal lines below menu/logo area #653527

    yes – sorry – i used your selection above.
    you can use every colordefinition you like – even rgb or rgba values.

    in reply to: Add 2 horizontal lines below menu/logo area #652969

    and if you like to have a little distance between those lines setup a margin on the bottom of #header_main

    #header_main {
        border-bottom: 10px solid grey;
        margin-bottom: 2px;
    }
    in reply to: Add 2 horizontal lines below menu/logo area #652963

    those two lines should stay static on that place , and what do you like to do with those lines in the menu?

    i would try to do it via #header and #header_main

     #header {
        border-bottom: 20px solid red !important;
    }
    
    #header_main {
        border-bottom: 10px solid grey !important;
    }

    well i do not know if on all enfold header options the #header and #header_main are the same size or if there are some paddings – but on my test installation this works.

    • This reply was modified 8 years, 5 months ago by Guenni007.
    in reply to: Add 2 horizontal lines below menu/logo area #652952

    you want under active and hovered main menu points a double line?

    #top #avia-menu li a:active, #top #avia-menu li a:hover {
        border-bottom: 2px solid red;
        margin-bottom: 0 !important;
    }
    
    .avia-menu-fx {
        bottom: 4px;
        height: 2px;
    }

    • This reply was modified 8 years, 5 months ago by Guenni007.
    in reply to: regular ampersand (&) #652934

    and if you like the size and color of heading try this:

    .special_amp {
    font-family: initial !important;
    font-size: inherit !important;
    color: inherit !important
    }

    hard to decide only from a screenshot. Sometimes it is a matter of displaying options of anchor element. But it will be easier to see it in a test environment. So if you don’t want to post the link to your testsite on public give the moderators here on board the possibility by posting the link in private content.

    i never feel good on automatic indexing so i use Yeost SEO for that manually:

    thats what i mean. just click on edit Snippet and put in your wanted Description.

    in reply to: Embed only a section of a video #649726

    Is it a link to the server of them or do they share it via Youtube or Vimeo ?

    If not try to download the video and cut it in a video editing software. This is the best way i think due to performance reasons than and if you embed it you share the link to that video. And this might get trouble with law if it is commercial video.

    • This reply was modified 8 years, 5 months ago by Guenni007.
    in reply to: Having trouble using a different social icon #649719

    hm – ismael – seems to be the code of post 1 here in the thread.
    Difference is instead of sina-weibo you used weibo and the add filter option comes after the function. And this maybe the important difference you used on add custom icon the entypo-fontello option.
    Which of those changings is the important one. Is the order important too ?

    hm – i changed on important sites on an installation the snippets manually. On each page/post you got this possibility.
    you are thinking of the automatic generation of those snippets?

    in reply to: font list for enfold #649394

    thanks Rikard and by the way – there is a new google font look and feel:

    Enfold Google Fonts see here

    in reply to: Email Forms Not Working #648214

    try first if you got an email if on wordpress login you requested a new password.
    If this does not work – the contact form 7 will not work too!
    In my case above the customer got an own xampp Server at home and e-mail sending via php was not possible – so smtp sending helped me to get out that thing.

    in reply to: Landing Page Help: Can't get form to align right #647708

    hard to say without the livecontent. I did not found the site with that form element allthough it is easy to get your site via google. – your logo is evident

    in reply to: Add a dropshadow behind some text #647703

    i know it with 3 values and a color

    
    .your-custom-class * { text-shadow: 2px 3px 4px #000000; }

    the first is the x-shift the second the y-shift the third is blur-value and the color is evident

    • This reply was modified 8 years, 5 months ago by Guenni007.
    in reply to: Nice Demo that App-Demo #645423

    990 px is a bit to small. It looks bad on ipad so i decided to set the gate at 1024px
    Thanks ismael

    i suppose that this is a problem by minifying a media querry advice.

    something like this here:

    @media only screen and (max-width: 1024px) {.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet {
        display: none !important;
    }
    }

    some minifying tools lost some important brackets here etc.

    in reply to: Nice Demo that App-Demo #644675

    by the way – how do i set up the “hide on mobile devices” because on ipad these option has no effect even if i setup on header/mobile menu the option on 990px

    i only could set up that option on quick css by:

    @media only screen and (max-width: 1024px) {.responsive #top .av-hide-on-mobile, .responsive #top .av-hide-on-tablet {
        display: none !important;
    }
    }
    in reply to: Email Forms Not Working #642286

    yesterday i got a problem too on a customer installation.
    I have never had problems with php email sending and enfold before but the server of my customer seems not to like email php sending.
    so i decided to give a chance to wp-mail-smtp. but this does not give at first attempt a success.
    I had to deinstall all my e-mail encryption plugins !
    After that e-mail sending works ! BTW i found another encryption tool ( and this seems to be much better than the others) that works with that combination: email-encoder-bundle.

    in reply to: "share this" social icons font & hover color #642159

    by the way: if you want the icons to be black on hovering on top-navigation:

    #top #wrap_all .social_bookmarks li:hover a {
        color: #000 !important;
    }
    in reply to: "share this" social icons font & hover color #642157

    but this is not the original Enfold Created Button. Isn’t it?

    how do you put in that background image ? via CSS ?

    in reply to: How can i set 1/2 collums to full width? #641950

    i think that there is no exact line from top to bottom in the half (see your arrow in the image) seems to be because you choose on one column (space between columns) and on the other not

    And btw: you should place only once an id. You got two color sections with same id.
    if you haven’t it allready activated you can put in your functions.php of your child-theme :
    add_theme_support('avia_template_builder_custom_css');
    than you can set a class for most of the alb elements.
    You can set on css more than one class for different divs

    • This reply was modified 8 years, 5 months ago by Guenni007.
    in reply to: How can i set 1/2 collums to full width? #641938

    the space between those flex-columns is not set by a padding or margin – there is a “placeholder” div between – so try to play with width of that container:

    #top .av-flex-placeholder {
        width: 1%;
    }

    but i see you set those columns often in a different way like on cooperatie there are some – this comes from setting “equal hight”

    some of them are not set to equal hight – than placeholder is missing

    in reply to: Changing font sizes for mobile view #641922

    by the way you can set both min and max:

    @media only screen and (min-width:769px) and (max-width: 1023px)

    and with f.e. aspect-ratio you can set specified rules for retina display or not etc..
    very nice feature on CSS.

    in reply to: Changing font sizes for mobile view #641921

    this is part of Media Querries

    for example :

    @media only screen and (max-width: 480px) {
        body {
            font-size: 14px;
        }
    }

    this will work for screen only and underneath a width of 480px
    you see on that link that you can set a lot of options – maybe you only want to set print font size :

    @media print {
        body {
            font-size: 14px;
        }
    }

    but if you like to overwrite some rules on enfold you have to think about the class: “.responsive” which is added if you are beneath the width you set for mobile behaviour on enfold options dialog.
    etc. pp.

    btw. it is often recomended that you set those rules to !important

    • This reply was modified 8 years, 5 months ago by Guenni007.
Viewing 30 posts - 10,021 through 10,050 (of 10,882 total)