Forum Activity for @michael

michael
@michael
01/12/17 12:12:26AM
7,826 posts

Ability to sort Smileys manually


Suggestions

feature request noted. Seams like a good idea stumelia, thanks. :)
michael
@michael
01/11/17 06:54:05PM
7,826 posts

Unable to embed images with an apostrophe in the image filename.


Using Jamroom

also tested with ' in the uploaded filename itself and its working too. having trouble with the steps to reproduce the issue.
michael
@michael
01/11/17 06:32:40PM
7,826 posts

Unable to embed images with an apostrophe in the image filename.


Using Jamroom

unable to replicate this. I added a title of
fred's bark
to an image.

Then tried to embed the image into a blog post. It worked, the image embedded.

-- edit --
Also working on comments and on forum posts.

The only time I am able to make it fail is when the comments are using the editor, and the profile domain module is on and im on a profile domain that is on a different URL than the main domain.

But in this situation, all images fail to be embedable.
updated by @michael: 01/11/17 06:40:21PM
michael
@michael
01/11/17 04:55:12PM
7,826 posts

Getting error with Audio


Using Jamroom

^ what brian said fixes the issue for me in my dev setup.
michael
@michael
01/11/17 04:50:32PM
7,826 posts

Your tube API key


Using Jamroom

That means some settings you have setup at google are blocking your API key from working. Its asking you to go into your google account where you configured your youtube API key and make sure the settings there allow the site you are using the key from to use your API.

check your google settings.
michael
@michael
01/11/17 01:49:27AM
7,826 posts

Embedding Twitter timeline widget on site


Design and Skin Customization

should be the same. FTP on the index page is also template code can I see the URL?
michael
@michael
01/11/17 12:45:04AM
7,826 posts

Possible Photo Album Bug?


Using Jamroom

Not intentional. Bug. Should take you to the same place the arrow goes to.

--
Update from the marketplace and it should be fixed.

Thanks for reporting this.
michael
@michael
01/10/17 09:26:33PM
7,826 posts

glitch when posting links to site media urls in comments/posts


Using Jamroom

if you didnt use the link button at all, Media URL scanner would convert that into a nice card for the link with info about where the link goes to and whats there. all that info, we're calling a 'card' or a 'media card'.

Like an index card of what is at where the link is pointed to.

like when you put a youtube link in and it converts it to a player.

Its the use of the button thats getting in the way in this situation. by using the button the clicker is adding extra HTML to the link that the system isnt expecting. The system is expecting the user to paste in html links, then expecting that other users will want to click on them, so the system is converting the links it finds into clickable links. but in this case there are 2 links and the systems clash. need to fix this.

Your first answer answers my question. I know how it should be when its fixed now. thanks.
michael
@michael
01/10/17 09:18:44PM
7,826 posts

How do i add a login box to my index page.


Design and Skin Customization

Nice one. Good on you for trying to learn CSS.

The issue here is there is a lot of other info that is making the whole system look like the video is making it look, but you've only copied a portion of that. So the portion you have copied has worked and has some left-over bits that do nothing.

I can see what you're after though.

This will get you closer, then you need to tweak it:
.logincontainer {
    background-color: rgba(29, 30, 12, 0.8);
    border-radius: 4px;
    color: white;
    margin: 50px;
    padding: 37px;
    width: 500px;
}


.loginbody {
    background-color: #FFED00;
    background-size: 100% 720px;
}
  292