Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

Wordpress and Vanilla 2.1b1 my menu in EmbedFriendly theme is cut off

2»

Comments

  • Options

    But now your forum isn't embedded anymore, so I cannot see what's wrong.

    There was an error rendering this rich post.

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP
    edited August 2013

    ok look you can affect the vanilla iframe from the wordpress theme style.css

    try this into your WP theme

    #container {
    float: none;
    margin: 0;
    width: 100%;
    }
    

    and

    .entry-content iframe {
    width:100%;
    height:100%;
    }
    
  • Options

    @vrijvlinder said:
    ok look you can affect the vanilla iframe from the wordpress theme style.css

    try this into your WP theme

    #container {
    float: none;
    margin: 0;
    width: 100%;
    }
    

    and

    .entry-content iframe {
    width:100%;
    height:100%;
    }
    

    This Code has no effect on the Forum-Iframe!

    I found out that, if i´m changing the size of the site by zooming, the menu appears again.

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    I can say that to me it looks fine. What are you using for a browser? on a mac or pc ?

    I can use those codes in firebug on your site and they work. So the codes here do work. You may not be placing them in the correct place.

  • Options

    I use Firefox and Chrome!

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    ok well then use firebug to help you find the right elements to alter.

    I can say that on Safari, Chrome. and Firefox those codes for the embedFriendly theme work. On the actual forum http://unnatural.eu/forum/

    In order to affect the iframe, you need to add this body code to the embed friendly theme, I do not see it in your code. You must not have placed it properly or removed it. Sometimes the changes do not appear right away, you need to refresh the page and empty the cache.

    this one looks nothing like your screenshot but because it is an embed you will need to adjust also the WP theme . I know WP themes have many files, you need to place it in the correct file for it to work. I don't see the code I gave you in your code. For this url

    http://unnatural.eu/board/

  • Options

    If you want to see the bug, you can log in with this data on unnatural.eu/board . Username: Bug PW: bug1
    Go to "RBG-Anmeldung S14" and scroll up.
    @vijvlinder i search in the afternoon with firebug.

  • Options
    TamaTama United Kingdom ✭✭✭

    @Quente said:
    If you want to see the bug, you can log in with this data on unnatural.eu/board . Username: Bug PW: bug1
    Go to "RBG-Anmeldung S14" and scroll up.
    vijvlinder i search in the afternoon with firebug.

    Your iframe seems to have " height: 1000px;" set as the height, on all pages

    There was an error rendering this rich post.

  • Options

    Thanks

    <iframe id="vanilla35695" width="100%" **scrolling="no"** height="1000" frameborder="0" style="width: 100%; h**eight: 2000px**; border: 0; display: block;" border="0" src="http://unnatural.eu/forum/index.php?p=/&t=1377083324683&remote=http%3A%2F%2Funnatural.eu%2Fboard%2F&locale=" name="vanilla35695">

    I change bright printed letters. But can i find the File with the iframe-code?

  • Options
    TamaTama United Kingdom ✭✭✭

    @Quente said:
    Thanks

    <iframe id="vanilla35695" width="100%" **scrolling="no"** height="1000" frameborder="0" style="width: 100%; h**eight: 2000px**; border: 0; display: block;" border="0" src="http://unnatural.eu/forum/index.php?p=/&t=1377083324683&remote=http%3A%2F%2Funnatural.eu%2Fboard%2F&locale=" name="vanilla35695">

    I change bright printed letters. But can i find the File with the iframe-code?

    You really should this code for embedding :)

    <script type="text/javascript" src="http://unnatural.eu/forum/js/embed.js"></script>
    <noscript>Please enable JavaScript to view the <a href="http://vanillaforums.com/?ref_noscript">discussions powered by Vanilla.</a></noscript>
    <div class="vanilla-credit"><a class="vanilla-anchor" href="http://vanillaforums.com">Discussions by <span class="vanilla-logo">Vanilla</span></a></div>
    

    There was an error rendering this rich post.

  • Options

    Can you explain, what you mean? I can not find the File where the Code included.

  • Options
    TamaTama United Kingdom ✭✭✭

    @Quente said:
    Can you explain, what you mean? I can not find the File where the Code included.

    That code is taken from /embed/forum/universal

    There was an error rendering this rich post.

  • Options

    ahhhhhhhhhh with embed! Not the plugin way! but the scrollbar is :(

  • Options
    TamaTama United Kingdom ✭✭✭
    edited August 2013

    @Quente said:
    ahhhhhhhhhh with embed! Not the plugin way! but the scrollbar is :(

    add this to custom.css to get rid of the horizontal scroll bar, when that's done I'll see what's causing the vertical one

    #Panel input.InputBox { width: 168px; }

    There was an error rendering this rich post.

  • Options

    i add this code to ftp://xxxxxx/html/forum/themes/EmbedFriendly/design/custom.css but this has no effect on the site.

  • Options
    TamaTama United Kingdom ✭✭✭

    @Quente said:
    i add this code to ftp://xxxxxx/html/forum/themes/EmbedFriendly/design/custom.css but this has no effect on the site.

    You added it inside a media screen query it should be like this

    }

    Panel input.InputBox {

    width: 168px;
    }

    not

    There was an error rendering this rich post.

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    The body height is not what is causing this, I really wish someone would listen sometimes. Forget about vanilla custom.css for a bit and fix your WP them so the embed works . Or better yet, try using another theme and see if the problem is only related to that theme or if it happens with other themes. If it happens with other themes, then it is your wordpress style that needs to be adjusted.

    It does not matter how you embed, whether it is an iframe or an iframe in the script , you can specify the size of the embed in you wp theme.This code would go in your WP theme custom style sheet. Any other alterations to the iframe can be added to this code. When a person logs in, the menu adds stuff etc so the layout changes a bit and that is why it acts different when logged in. You need to adjust the size of the container of the embed. That means the WP theme.

    iframe#vanilla35695{
    width:98%;
    height:1000px;
    margin:20px;
    }
    
  • Options
    QuenteQuente New
    edited August 2013

    @vrijvlinder said:
    The body height is not what is causing this, I really wish someone would listen sometimes. Forget about vanilla custom.css for a bit and fix your WP them so the embed works . Or better yet, try using another theme and see if the problem is only related to that theme or if it happens with other themes. If it happens with other themes, then it is your wordpress style that needs to be adjusted.

    It does not matter how you embed, whether it is an iframe or an iframe in the script , you can specify the size of the embed in you wp theme.This code would go in your WP theme custom style sheet. Any other alterations to the iframe can be added to this code. When a person logs in, the menu adds stuff etc so the layout changes a bit and that is why it acts different when logged in. You need to adjust the size of the container of the embed. That means the WP theme.

    iframe#vanilla35695{
    width:98%;
    height:1000px;
    margin:20px;
    }
    



    Yes thats right, i look how i can fix that! I search for the right place, how insert the code. Because in Style.css from wordpress, the code has no effect.

  • Options

    Another Problem, i can´t activate new plugins. I´ve put the plugins into the pluginfolder, but they aren´t in the pluginlist. Why?

  • Options
    vrijvlindervrijvlinder Papillon-Sauvage MVP

    this is a known problem with some 2.1b1 installations. You will need to manually add the plugins to the list in the config.php and enable them. Please search the forum using that question and you will find the answers .

Sign In or Register to comment.