Viewing 15 posts - 1 through 15 (of 20 total)
  • Author
    Posts
  • xtra12 Friend
    #190151

    I am confused about the content type on an article.

    I want the look of an image, where they see an image on the home page, but when clicked it takes them to my article. When I click content type – Image, it looks great, but when clicked none of my text appears. However, when I click content type article, it goes to the article, but my image on the home page isn’t there, instead it’s the title, image, et all crammed into the thumbnail.

    How can I do this? I don’t want to sacrifice the sleek look of the front page for making them link to articles.

    Thanks!

    xtra12 Friend
    #503999

    I found a work-around with this by going to template–>General and then disabling pop-ups. This way the picture shows the article.

    However, I do like the pop-up feature and want to use this to show an article. There has to be a way to do this, does anyone know?

    rani Friend
    #504004

    Hi Xtra12,

    You can use content type social instead of image and you will get the article content inside the pop up.

    xtra12 Friend
    #504011

    Rani, you are a lifesaver! Thanks a ton! You just saved me from hours of frustration!

    rani Friend
    #504012

    You are welcome 😀

    xtra12 Friend
    #504021

    One question. When I do switch it to “social”, the title always stays on the image. Is there any way to get it to be animated and only show on the mouseover like it does with the image and others?

    rani Friend
    #504023

    Yes.

    Create custome.css file and put it in css folder and put the following code in it:

    .fixel-grid .items.social.none article {
    background: #111
    }
    .fixel-grid .items.social.none article .item-desc {
    -webkit-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -moz-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -ms-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -o-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    }
    .fixel-grid .items.social.none article:hover .item-desc {
    -webkit-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -moz-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -ms-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    -o-transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    transition: transform 0.4s ease 0s, opacity 0.1s ease 0.3s;
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    }
    .fixel-grid .items.social.none article .item-image-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    }
    .fixel-grid .items.social.none article .item-image-wrap .pull-left.item-image,
    .fixel-grid .items.social.none article .item-image-wrap .pull-right.item-image,
    .fixel-grid .items.social.none article .item-image-wrap img {
    float: none;
    margin: 0 !important;
    -webkit-transition: all 0.4s ease 0s;
    -moz-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    }
    .fixel-grid .items.social.none article:hover .item-image-wrap,
    .fixel-grid .items.social.none article:focus .item-image-wrap,
    .fixel-grid .items.social.none article:active .item-image-wrap {
    background: #000000
    }
    .fixel-grid .items.social.none article:hover .pull-left.item-image,
    .fixel-grid .items.social.none article:hover .pull-right.item-image,
    .fixel-grid .items.social.none article:hover img,
    .fixel-grid .items.social.none article:focus .pull-left.item-image,
    .fixel-grid .items.social.none article:focus .pull-right.item-image,
    .fixel-grid .items.social.none article:focus img,
    .fixel-grid .items.social.none article:active .pull-left.item-image,
    .fixel-grid .items.social.none article:active .pull-right.item-image,
    .fixel-grid .items.social.none article:active img {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
    }

    xtra12 Friend
    #504026

    Thanks again, Rani! I will try that as soon as I can. Right now, I am having trouble scrolling, so I am going to try to fix that first in case I can’t and have to restore from a backup to fix it.

    xtra12 Friend
    #504045

    I have just made the code and placed it in the css folder and nothing happened. I made it in notepad and then named it custome.css. I uploaded via the server’s file manager.

    Nothing has changed. Is there something I need to do to activate it?

    tfosnom Friend
    #504051

    call it custom.css not custome.css

    ieosptheme Friend
    #505144

    How and Where can I configure this?

    <em>@rani 387178 wrote:</em><blockquote>Hi Xtra12,

    You can use content type social instead of image and you will get the article content inside the pop up.</blockquote>

    Saguaros Moderator
    #505516

    In backend settings of each article, go to Metadata Options tab and you can see parameter named: Content Type and change to your desired type.

    Check out this documentation page for more info: http://joomlart.com/documentation/joomla-templates/ja-fixel#template-config (section 6. Content Type Settings)

    ieosptheme Friend
    #505580

    I have changed the setting, and the article content is showing feel … But the article not in the pop-up well 😀 Please goto http://www.budaygergely.com and click on “Apple Special Event LIVE” at the HOME screen. What are the problems? Why can I not the margins?

    <em>@Saguaros 389142 wrote:</em><blockquote>In backend settings of each article, go to Metadata Options tab and you can see parameter named: Content Type and change to your desired type.

    Check out this documentation page for more info: http://joomlart.com/documentation/joomla-templates/ja-fixel#template-config (section 6. Content Type Settings)</blockquote>

    Saguaros Moderator
    #506354

    It seems that your site is in offline page and a login is required, could you pm me an admin account so that I can take a look at this?

    doco_design Friend
    #509307

    Hi,
    I would to have the same animation of “content type = image” but in “social type”
    I want it because in “image type” the link work only if I click the title

    Thank you

Viewing 15 posts - 1 through 15 (of 20 total)

This topic contains 20 replies, has 7 voices, and was last updated by  Saguaros 10 years, 9 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum