Forum Replies Created

Viewing 30 posts - 10,771 through 10,800 (of 11,529 total)
  • Author
    Posts
  • also ohne die Seite zu sehen ist das schwer zu sagen.
    Da musst du dann eben warten bis ein Moderator hier vorbeischaut – falls du im private Bereich sowas gepostet haben solltest.

    without a link to the concerning website it is hard to say. so – please wait on a moderator (if you have still posted in private Area a link)

    btw: you got the stretched layout? where do you place the background image ( in wrap_all etc pp ???)

    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: Text to be align #595563

    if you set in this code:

    .avia_textblock > p {
        text-align: justify;
    }

    you see under your images the text in a block – but under Lisbon the text is a different thing

    in reply to: Text to be align #595561

    you only read the code and thats it?

    do you see what i wrote first !

    6 p tags do not allow a justify rule

    in reply to: Text to be align #595557

    the text under Lisbon is in 6 different p tags so even if there is a justify rule this would have no effect !
    6 p tags in that little text. Do you have copy pasted it from another website?
    and you pasted it into the visual field of your text edit !

    ____________________

    btw: the images on the end of this page:
    how do you embed those images to your enfold.
    the images are 980px wide so it is not enough.
    only a rule is set to them for max-width: 980px – but where does this come from? is it a plugin ?

    if you set

    .avia_textblock img {
        max-width: 100%;
        width: 100% !important;
    }

    but this is not the solution – this will change every img inside a textblock
    there has to be an inline definition:

    <img width="980" height="551" sizes="(max-width: 980px) 100vw, 980px" srcset="http://www. … etc pp

    in reply to: Mysterious Plugin Needs Updating #595331

    have you logged in to your mysql database?
    Try to optimize/repair your database tables

    in reply to: Slide-Show (volle Breite) – Maximale Höhe einstellen #595243

    Also – du bist dort auf der Seite im Boxed Layout Modus! Und du möchtest jetzt einen Slider haben, der trotzdem über die volle Breite geht?

    in reply to: Full Width Sub Menu #593974

    so you mean that mega-div sub-menu set on menu ?
    to set it to 100vw (100%screenwidth) is not the thing but the positioning is the thing here. on avis.js there is a calculation of the right positioning of that unit. – so please wait on a moderator – perhaps there is a possibility.

    in reply to: Mobile cart issue #593970

    ok – try this here on quick css:

    @media only screen and (max-width: 480px) {
    .cart_dropdown .dropdown_widget {
        width: 245px !important;
    }
    }
    in reply to: Register form doesn't work #593958

    what Register do you mean – that of a new user in wordpress?
    Or do you have a plugin installed for that new users

    in reply to: Mobile cart issue #593896

    so – good that i can see the url in your screenshot – try to make the dropdown smaller:

    .cart_dropdown .dropdown_widget {
        width: 250px;
    }

    maybe it is needed that you set the rule to !important

    in reply to: Register form doesn't work #593894

    isn’t there a checkbox “yes i know – and go on with weak password”

    in reply to: Problem identifying css classes #593892

    there are alot of tutorials to use such tools f.e. : https://youtu.be/tdIk2PztcL0?t=2m54s

    in reply to: Problem identifying css classes #593888

    Well we are all no hyper nerds in knowing everything about a theme.
    We simply use tools that show us the info about a website.
    One of the first tools was that brilliant firebug plugin (first for firefox – later there are versions for other browsers too) – nowadays a lot of modern browsers have such tools implemented.
    Usually you can reach those tools via the context menu of your mouse.
    Show on the wanted piece of your website – call the context menu (if you got a more than one button mouse – commonly the right mouse button) and navigate to “inspect” or “inspect via firebug” in my case. Sorry i dont know if it is called inspect because i got a german browser so for me there is “Element untersuchen”
    here is a good articel about why it is important to use such tools. Here

    you see in that screenshot – i have called the info about the main nav list point “headers” (colored arrows) and on the left side you can see the html structure. On the right side there is the css code. Very nice – if you click on the right side (where css part is written by me) an click there right mouse button you can virtually ad new css rules. etc.
    Click on the image You see that f.e. the id of this third list point of main nav is #menu-item-1561 – you can inspect on the right side where this element gets his outlooking from and from whom it has inherited his css rules. so if you want to change the color of the font f.e. you have to scroll down this right side and find the rule of color. etc. pp

    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: Hiding a fullscreen slider on desktop and mobile #593884

    So the thing is that you do devide those identical ids through a class that follows directly to that div.
    Be carefull that there is no space between div and class because it belongs direct to that div.

    in reply to: Hiding a fullscreen slider on desktop and mobile #593883

    on a test install with two fullscreen sliders i see that the first one gets the class: avia-builder-el-0 and the second one avia-builder-el-1

    so try to do it this way:

    @media only screen and (min-width: 768px) {
    #fullscreen_slider_0.avia-builder-el-0 {
        display: none;
    }
    }
    
    @media only screen and (max-width: 767px) {
    #fullscreen_slider_0.avia-builder-el-1 {
        display: none;
    }
    
    #fullscreen_slider_0.avia-builder-el-0 {
        display: block;
    }
    }
    in reply to: Hiding a fullscreen slider on desktop and mobile #593882

    do you have a link for us? This is easier because i can see if a hint will work or not. I use for that firebug on firefox. Allthough today all browsers got a kind of developer tools this was my favorite. i can change virtually the css f.e. and see directly whether it works or not.

    in reply to: Standard Sidebar on Portfolio pages #593427

    :lol – and if you do that to create you own portfolio-widget area then you can register that as default if you have some coding on register-admin-options.php ;-)

    and some coding in helper-template-logic.php …

    in reply to: Standard Sidebar on Portfolio pages #593424

    have you a sidebar on pages? if not you can use this for your portfolios.
    If yes you can create a custom widget area f.e. “portfolio-widget”

    this is then no standard but you can set on each portfolio this widget as active

    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: Google icons #593416

    if you press one of those icons – you will see some opportunities to do (download svg, png and – <icon font>
    aha there you go – you can implement them like a normal google web font : read here:

    http://google.github.io/material-design-icons/
    “Setup Method 1”

    in reply to: Gallery Image Sizes not uniform #593402

    you have all f.e. landscape images and they all have the same pixel size? You are using the gallery element (not the masonry gallery)?
    And you are using : No scaling (original width x original height) ?

    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: Full Width Sub Menu #593385

    sorry Yigit – i thought you are right – and i believed that he know that. And he wants to color it like in his example

    Edit: the element is in your page/post editor at advanced layout builder (short: alb) (there are three tabs layout/content/media)

    and by the way you can set up as a sticky menu

    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: Full Width Sub Menu #593380

    you know how to activate custom class for alb elements? http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    then give a custom class to your sub menu like: “fullfill” and then add following to your quick css:

    .av-submenu-container.fullfill {
        background: #ddd
    }
    
    .fullfill .menu-item > a {
        background: transparent
    }

    the submenu container is the one stretched from one side to the other side (here i gave him a background color #ddd
    to get no background-color for the menu points set it to transparent

    in reply to: Header and footer menus = duplicate id's #593358

    Allthough the “fault” is still there – the solutions seems not so urgent :lol:

    in reply to: Adding partial transparency to Enfold main menu #591781

    sorry Rikard – i began in english – but from the moment he writes german i sliddered in my nativ language.

    btw. it seem to be usual that after solution the participants don’t give a response. ;-)

    in reply to: Custom CSS in Color Section vs. in Column element #591779

    no context menu on developer tools (firebug etc.) – no info from my site!

    in reply to: Custom CSS in Color Section vs. in Column element #591774

    this was offtopic a question to the moderators – because this is a specialized code for your installation.
    if you create a custom fullwidth submenu all list poinst get a class (menu-item-top-level-1 etc. …) wouldnt it be better to use this code to select the menu points and add class “active-menu-item”

    in reply to: custom font – #591773

    what about:

    fieldset .text_input, fieldset .text_area {
        font-family: "IRANSans" !important;
    }
    in reply to: custom font – #591558

    i think i child theme it does not work.
    You can place it in custom.css ( enfold/css/custom.css) that seems to be the better place.

    try this first:

    fieldset label {
        font-family: "IRANSans" !important;
    }
    • This reply was modified 9 years, 4 months ago by Guenni007.
    in reply to: custom font – #591486

    btw : isn’t it browser concerning. I thought of the primary language in my browser. When browsing to your site with a primary language e.g. German do i realy see those font-families? or do i look to a web save font?

    in reply to: custom font – #591465

    http://webers-testseite.de/enf02/iransans/

    have a look again – maybe i copied the wrong thing from your site. This is from your slider.

    try to go the way with your font
    https://www.pagelines.com/adding-custom-fonts-to-wordpress/

    it seems to be the best way.

Viewing 30 posts - 10,771 through 10,800 (of 11,529 total)