Forum Replies Created

Viewing 30 posts - 10,561 through 10,590 (of 10,879 total)
  • Author
    Posts
  • in reply to: make mobile version more user friendly? #462189

    so lets try togehter:

    in child-theme functions.php:

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
    	$sub .= "<strong class='logo-title'>&ldquo;… the natural route to a healthy complexion</strong>";
    	$sub .= "<strong class='logo-title logo-subtitle'>and a younger-looking you…&rdquo;</strong>";
    	return $sub;
    }

    on quick css:

    #top .logo, #top .logo a {
        overflow: visible;
    }
    
    #top .logo img {
        float: left;
    }
    
    #top .subtext {
        float: left;
        position: relative;
    }
    
    #top .logo-title {
        color: #000;
        font-size: 20px;
        left: 7px;
        opacity: 1;
        position: absolute;
        top: -15px;
        transition: opacity 0.4s ease-out 0s;
        white-space: nowrap;
    }
    
    #top .logo-subtitle {
        color: #aaa;
        left: 60px;
        top: 15px;
    }
    
    #top .header-scrolled .logo-title {
        opacity: 0;
    }
    

    and for mobile :

    @media only screen and (max-width: 770px) {
    .responsive #top .logo-title {
        opacity: 0;
    }
    }

    this looks than this way:

    http://webers-testseite.de/enf01/

    in reply to: make mobile version more user friendly? #462176

    perhaps you can do the phonenumbers in the menu on top – this has the opportunity that mobile users can click on it.
    And you have one problem of the logo less.

    Perhaps your customer likes the solution of kriesi here on Board : have a look what happens to the Kriesi.at/Premium Themes
    Info when scrolling down.

    in reply to: Table Font color #462167

    what is the looking of the table you want? white background with white font color ???

    Well never the less there is a rule in enfold that every 2nd tr gets a different font color

    .main_color table caption, 
    .main_color tr:nth-child(2n), 
    .main_color .pricing-table > li:nth-child(2n) {
        color: #919191;
    }

    your can set your desired font-color by eg. :

    .main_color tr:nth-child(2n) {
        color: #000 !important;
    }
    in reply to: Footer background problem #462165

    well why aren’t you using the enfold options dialog for that.
    Even the body background could be set by that without any plugin (for static backgrounds).

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: decrease space #462164

    this is hard to see only from a screenshot. Is there a link for us.
    If you don’t like to post it in public use the private option on comments.
    But than i could sadly help you.

    in reply to: Soft Hyphenation #462077

    oh pardon me- i was looking for a similar still actual problem.
    On special headings the shy did not work !!!

    so i give my two cents to it.
    i didn’t recognized the date of the request

    in reply to: Megamenu style and numerb of column #461626
    in reply to: regenerating thumbnails – wrong image sizes #461624

    i used this for a similar Problem

    https://wordpress.org/plugins/regenerate-thumbnails/

    in reply to: Soft Hyphenation #461569

    often you can use instead :
    &#173 and behind the 173 a semicolon

    try it

    i had now the same problem because i want some headings to break on certain points but on special Headings the &shy; does not work

    sorry the code above is translated allthough it is set in to code tags so there is that stupid instruction

    • This reply was modified 9 years, 5 months ago by Guenni007.

    well first of all, if you don’t post your website link in private reply that is definitly your fault;

    The ranking in Google of this Support Forum is so brilliant because of the perfect and very direct help you get here in a daily routine.
    Try other support forums please! This is really unusual.

    What people find on Google about this support forum is that problems (and very often these problems are sourced to the user not to the theme) find a fast help.

    just my two cents from another participant

    Günter

    in reply to: Add Google Font to all parts of Enfold #460946

    Well you can set the fonts too on Enfold Options Dialogs.
    On “General Styling” there are Fonts on the last Tab.
    And if you want you can set on “advanced Styling” too font-family and in one setup the text-transform, text-color etc.

    edit: :lol “changed” :)

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: Mega Menu, 7 column #460867

    my thought ismael was that he dislikes the 6/1 automatic view
    so my tip goes to a custom set via Menu Option to a 4 first line / 3 beneath look

    in reply to: Add Google Font to all parts of Enfold #460605

    you erased the return $fonts; instruction twice !

    
    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    
    $fonts['Titillium Web'] = 'Titillium Web:300,300italic,400,400italic,700,700italic:latin';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    
    $fonts['Titillium Web'] = 'Titillium Web:300,300italic,400,400italic,700,700italic:latin';
    return $fonts;
    }
    in reply to: Decrease Padding above easy slider? #460579

    so now – sorry – i see that this is normal on enfold installation that scroll-offset of div id=main differ about 30px to the padding-top.

    so take the

    main {
        padding-top: 0;
    }

    if you want to do it for all sites or advice above with .home if you only want to change it on Startpage

    in reply to: Decrease Padding above easy slider? #460572

    and if you only want to change it for your Start Page:

    .home main {
        padding-top: 0;
    }

    because on default it seem there is a padding-top of 50px

    but by the way – a little distance between header and content looks better for me

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: Decrease Padding above easy slider? #460570

    your header hight : do you set it in Enfold Options Dialog?

    Because i got here on your site as you can see a

    Screenshot with Developer tools aside

    a scrolloffset of 116px from main

    but i see on your css:

    .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
        padding-top: 147px;
    }

    have a look where the 147px comes from.

    or goto quick css and set:

    .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main {
        padding-top: 119px;
    }
    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: adding on Google Maps a select box for MapTypeID #460002
    This reply has been marked as private.
    in reply to: Mega Menu, 7 column #459972

    and 4 in the first line and 3 in the line beneath?
    This looks good i think.

    you can manage that without coding because on dashboard/appearance/menus there is the possibility to check a box in a column “this column should start a new row”

    so you set this on the 5th column of your mega menu and have 4/3

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: mapTypeControl too on pages/posts #459881

    thanks Josue – can you please have a look to this:

    https://kriesi.at/support/topic/adding-on-google-maps-a-select-box-for-maptypeid/

    the selectbox is working and i managed that only if the checkbox of maptype-control is checked the selectbox is seen.
    but i don’t know how to set this value of the select box to the MapTypeID. definitly i have to change something in shortcodes.js but i really don’t know what. Perhaps i can not see the wood for the trees.

    in reply to: widget logic and portfolio posts #459343

    so it can be closed –
    btw. could you have a look at: https://kriesi.at/support/topic/adding-on-google-maps-a-select-box-for-maptypeid/

    this is something i think for feature request – but i need it for a project now.

    in reply to: widget logic and portfolio posts #459338

    ok in future i tag it better and on topic i write tip before the topic.

    this is something i was looking for myself – and because it was hard to find (on google only a few mentioned what the point is for custom post)
    i decided to share my solution here.

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: LayerSlider WP crashes installation #459108

    sorry but over 60000 sells and a five star ranking – do you really think that all those people are noobs?
    i even know a lot of wordpress webdesigners who uses exactly this theme for their own website. – Or do you think it might be your lack of experience that something went wrong.

    By the way – do you use the implemented Layerslider Plugin or do you install the standallone layerslider plugin?
    Because i have a standalone license and do sometimes install the standalone plugin. Then you have to inactivate the implemented one:

    http://kriesi.at/documentation/enfold/deactivate-the-layerslider-plugin/

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: is there something with bubble info on google maps ? #458674

    can be closed – after i deleted the marker and set a new one everything works fine.

    in reply to: Different logo for mobile site? #458668
    @media only screen and (max-width: 767px) {
    .responsive .logo img {
        margin: 10px;
    }
    }

    i think you have set the mobile version only for mobile and not for tablets
    so i guess this will be ok

    in reply to: I want the logo to overlap the content #458631

    yes – but on mobile this won’t work.

    By the way. your images are very nice – but too big.
    500kb and more ! This is one reason for slow speed. (Poolhouse is over 1MB)
    Try to compress them much more – and use for jpg progressiv
    and try to activate gzip compression for your website – usually made by some code in htaccess file

    if you use Photoshop :
    http://abload.de/img/poolhousezfoaz.jpg

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: I want the logo to overlap the content #458617

    seem to work :)

    ok i have to do so as if there was a link in the iconbox

    .customclass .iconbox_content_container  a {
    pointer-events: none !important;
    color: #666 !important
    }
    • This reply was modified 9 years, 5 months ago by Guenni007.
    This reply has been marked as private.
    in reply to: I want the logo to overlap the content #458550

    this will do the job:

    .responsive .logo {
    display: block
    }
    
    .logo, .logo a {
        overflow: visible;
    }
    
    .logo img {
        height: 140%;
        max-height: 180px !important
    }

    you have to play with the settings height and max-height
    and to give some settings vor responsive behaviour

    perhaps a png looks good on that with a white outline and a little shadow !

    • This reply was modified 9 years, 5 months ago by Guenni007.
    in reply to: Responsive is not working correctly #457955

    ohne einen Link werden wir da keine Aussage machen können.
    Falls Du das nicht öffentlich linken willst gib den Moderatoren halt einen versteckten Link durch “Set as private Reply”

Viewing 30 posts - 10,561 through 10,590 (of 10,879 total)