test
Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • eagledk Friend
    #758509

    Hi,

    If I logon to my site some text of and article is missing and the width on the frontpage are to big

    Her are the article http://www.campingoplevelser.dk/artikler/34-fredagsfilm/1048-fredagsfilm-4815-fint-skal-det-vaere
    when I’m not logon:

    And here is how it looks when I’m logon:

    And the width of the front page:

    Please help with this.

    Regards

    Morten

    Ninja Lead Moderator
    #758810

    Hi Morten,

    I fixed the problem the detail page after logon directly on your site with solution below

    Open templates/ja_teline_v/html/layouts/joomla/content/item/default.php file

    find and change

    <?php echo JLayoutHelper::render('joomla.content.info_block.topic', array('item' => $item)); ?>
    <?php echo $item->text; ?>

    to

    <?php echo JLayoutHelper::render('joomla.content.info_block.topic', array('item' => $item)); ?>
    <?php echo $item->fulltext; ?>

    About the problem in home page, it’s very strange with the problem on your site. what did you change on your site?

    Regards

    eagledk Friend
    #758848

    Hi Ninja,

    Thanks for the the reply, and the fix.

    It worked for the text length, but the Width of the site it still to much.

    Please see the third attachment.

    And as I recall it I have only updated the ACM module.

    Regards

    Morten

    Ninja Lead Moderator
    #759034

    In this case, you have to make a backup version all your site first and then upgrade template on your site to last version. I could not duplicate on your site at my end with latest version.

    eagledk Friend
    #760026

    In this case, you have to make a backup version all your site first and then upgrade template on your site to last version. I could not duplicate on your site at my end with latest version.

    I’m on the latest version of template, see attachment.

    And I did a backup so just go ahead.


    1. Teline-V
    eagledk Friend
    #761252

    Will someone pleased follow up on this?

    Ninja Lead Moderator
    #777730

    Will someone pleased follow up on this?

    I’m terribly sorry for this lateness as we just moved to this new forum and somehow we missed the thread.

    You can provide me the admin login info of your site again by putting info in your reply and SET AS PRIVATE reply (so that only Moderators and Staffs can see). I will help you out.

    eagledk Friend
    #789745
    This reply has been marked as private.
    eagledk Friend
    #811116

    Why is it so difficult to get some support?

    Ninja Lead Moderator
    #811688

    I spent a lot of my time to debug the problem as you mentioned (the problem CSS style when logging in from Front-end) but it’s very hard to figure it out. I will proceed the following steps on your site:

    • Upgrade all extensions and template on your site
    • Click compile LESS to CSS button from template manager of your site

    Please help me to make a backup all the CSS style all your site first.

    eagledk Friend
    #812526

    Hi,

    Thanks for the update. I have just run an backup of my site, so now you can continue.

    All extensions that are importen should be up to date with latest version.

    I have Akeeba Backup installed and if you want/need a backup, you can any time just start this. I will takes about 6 min. to complete.

    Please also check the event page before and after logon:
    http://www.campingoplevelser.dk/events/1052-camping-2016-aalborg
    It craps totally up.

    Regards

    Morten

    Ninja Lead Moderator
    #814487

    I spent a lot of my time today to debug the problem on your site and it’s very strange with login account, the CSS style templates/ja_teline_v/local/css/event.css did not affect on your site.

    You can send me FTP account of your site and Set as private reply, I will check the source code on your site.

    eagledk Friend
    #815676
    This reply has been marked as private.
    Ninja Lead Moderator
    #818008

    It’s very strange with that bug on your site, it did not load the CSS style of event, but I fixed the problem directly on your site with the solution below

    Open templates/ja_teline_v/html/layouts/joomla/content/item/event.php file and add new css style

    @media screen and (min-width: 480px) {
      .layout-magazine body {
        background-size: cover;
      }
    }
    @media screen and (max-width: 992px) {
      .layout-magazine .t3-header .container {
        padding-left: 0;
        padding-right: 0;
      }
    }
    .layout-magazine .t3-header .row {
      margin: 0;
    }
    @media screen and (min-width: 480px) {
      .layout-magazine .t3-header {
        padding-top: 48px;
        padding-bottom: 48px;
      }
    }
    .layout-magazine .logo {
      text-align: center;
    }
    @media screen and (max-width: 992px) {
      .layout-magazine .logo {
        padding-left: 0;
        padding-right: 0;
        width: auto;
      }
    }
    .layout-magazine .logo-text a {
      color: #ffffff;
      font-size: 90px;
      text-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
    }
    @media screen and (max-width: 992px) {
      .layout-magazine .logo-text a {
        color: #000000;
        font-size: 36px;
      }
    }
    @media screen and (max-width: 480px) {
      .layout-magazine .logo-text a {
        font-size: 24px;
      }
    }
    @media screen and (max-width: 992px) {
      .layout-magazine .logo-text a span {
        text-shadow: none;
      }
    }
    .layout-magazine .logo-text .site-slogan {
      color: #e5e5e5;
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    }
    .layout-magazine .t3-topnav .nav > .active > a {
      background: #0077bb;
      color: #ffffff;
    }
    .layout-magazine .t3-mainbody {
      background: #fff;
      background: transparent;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    }
    .layout-magazine .t3-footer > .container {
      border-top: 4px solid #0077bb;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
    }
    .layout-magazine .t3-footer .logo-text a {
      font-size: 54px;
      text-shadow: none;
    }
    @media screen and (min-width: 768px) {
      .layout-magazine .t3-footer .logo-text a {
        font-size: 72px;
      }
    }
    .layout-magazine .t3-footer .logo-text .site-slogan {
      font-size: 14px;
      text-shadow: none;
    }
    .layout-magazine .article-main {
      padding: 0;
      margin-left: -20px;
      margin-right: -20px;
    }
    .layout-magazine .article-main .event-main {
      position: relative;
      min-height: 1px;
      padding-left: 20px;
      padding-right: 20px;
    }
    @media (min-width: 992px) {
      .layout-magazine .article-main .event-main {
        float: left;
        width: 66.66666667%;
      }
    }
    .layout-magazine .article-main .event-aside {
      position: relative;
      min-height: 1px;
      padding-left: 20px;
      padding-right: 20px;
    }
    @media (min-width: 992px) {
      .layout-magazine .article-main .event-aside {
        float: left;
        width: 33.33333333%;
      }
    }
    @media screen and (min-width: 1200px) {
      .layout-magazine .article-main > .col {
        display: table-cell !important;
        vertical-align: top !important;
        float: none !important;
      }
    }
    .layout-magazine .article-main .content_rating {
      height: 15px;
      margin-bottom: 12px;
    }
    .layout-magazine .article-main .content_vote {
      display: block;
      margin-bottom: 24px;
    }
    @media screen and (max-width: 767px) {
      .layout-magazine .article-main .content_vote .btn {
        margin-top: 10px;
      }
    }
    .layout-magazine .event-main {
      background: #fff;
    }
    .layout-magazine .event-main .article-title h3 {
      font-size: 24px;
      margin-top: 0;
      padding-top: 24px;
    }
    @media screen and (min-width: 768px) {
      .layout-magazine .event-main .article-title h3 {
        font-size: 36px;
        padding-top: 24px;
      }
    }
    .layout-magazine .event-main .magazine-item-main {
      padding-bottom: 24px;
    }
    .layout-magazine .event-main .magazine-item-media {
      width: 100%;
      max-height: 336px;
      overflow: hidden;
      margin-bottom: 24px;
    }
    .layout-magazine .event-main .magazine-item-media:before,
    .layout-magazine .event-main .magazine-item-media:after {
      content: " ";
      display: table;
    }
    .layout-magazine .event-main .magazine-item-media:after {
      clear: both;
    }
    .layout-magazine .event-main .magazine-item-media .item-image {
      float: none !important;
      margin: 0;
    }
    .layout-magazine .event-main .magazine-item-media .item-image img {
      max-width: 100%;
      width: 100%;
    }
    .layout-magazine .event-main .magazine-item-ct {
      font-size: 16px;
      font-weight: 300;
      max-height: none;
    }
    .layout-magazine .event-aside {
      background: #111111;
      background: rgba(0, 0, 0, 0.75);
      padding-top: 24px;
      padding-bottom: 24px;
    }
    @media screen and (max-width: 768px) {
      .layout-magazine .event-aside {
        min-height: 1px !important;
      }
    }
    .layout-magazine .event-aside .t3-module {
      background: #222222;
      padding-bottom: 0;
    }
    .layout-magazine .event-aside .module-title {
      background: transparent;
      border-bottom: 1px solid #333333;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 12px;
      display: block;
    }
    .layout-magazine .event-aside .module-ct {
      background: transparent;
      color: #e5e5e5;
      padding: 12px;
    }
    .layout-magazine .event-aside .event-logo {
      background: #ffffff;
      text-align: center;
    }
    .layout-magazine .event-aside .event-logo img {
      max-width: 100%;
    }
    .layout-magazine .event-aside .event-location {
      background: #0077bb;
    }
    .layout-magazine .event-aside address {
      font-size: 14px;
      text-transform: uppercase;
    }
    .layout-magazine .event-aside address strong {
      font-size: 16px;
      color: #fff;
    }
    .layout-magazine .event-aside .event-tickets .table {
      margin: 0;
    }
    .layout-magazine .event-aside .event-tickets .table th {
      background: #333333;
      border-bottom: 1px solid #333333;
    }
    .layout-magazine .event-aside .event-tickets .table td {
      border-top: 1px solid #333333;
    }
    @media screen and (max-width: 992px) {
      .layout-magazine .t3-footer .logo-text a {
        color: #ffffff;
      }
    }

    Now, you can see it’s working fine on your site.

    eagledk Friend
    #833664

    Sorry for this late update, but I have been very busy.

    But I still have the problem when I logon, both om frontpage and on the event page
    It is still too width.

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

This topic contains 20 replies, has 2 voices, and was last updated by  eagledk 8 years, 10 months ago.

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