Viewing 15 posts - 1 through 15 (of 19 total)
  • Author
    Posts
  • James Weston Friend
    #204000

    Hi Guys,

    I want to disable the In the News section on the right hand side of my home page and move the adverts and other modules below it up to the top of the page as per the screenshot.

    I saw before several people had done this on the forum but now those posts have gone 🙁

    Any direction would be appreciated as last time I tried (before the forum crashed) I managed to turn the module off but then the whole page got distorted.

    Jim


    1. homepage
    Radonja Djurisic Friend
    #560244

    Go to extensions> module manager
    set filter position to see news home

    u will see module [Magazine – Home] Featured News 1

    open and edit number of link items to 0

    hope this help

    Tolja


    1. hide
    James Weston Friend
    #560274

    Thanks but that only removes the In the News Block. If you look underneath further down the page the whole site goes haywire. I have changed the 0 back to 4.

    Jim

    James Weston Friend
    #560482

    Hi Guys,

    I noticed in the threads that were lost last week that a few people had managed to remove the In the News section from their sites without the sites losing their format.

    Now those threads are not there anymore if anyone has done this and can assist me would be greatly appreciated.

    Jim

    phong nam Friend
    #560486

    Hi Jim,

    Open custom.css file then addd

    .magazine-section-heading {
    display: none;
    }
    .magazine-featured-links .magazine-links {
    display: none;
    }

    or modifying layout by opening ja/templates/ja_teline_v/acm/news-featured/tmpl/style-1.php find and remove line 166->177

    <?php if ($show_block_links_title) : ?>
    <div class="magazine-section-heading">
    <h4 class="line-head"><?php echo $block_links_title; ?></h4>
    </div>
    <?php endif; ?>
    <!-- Links -->
    <div class="magazine-links">
    <?php foreach ($links as $item) : ?>
    <?php echo JLayoutHelper::render('joomla.content.link.default', array('item' => $item, 'params' => $aparams)); ?>
    <?php endforeach; ?>
    </div>
    <!-- // Links -->

    Hope that helps

    James Weston Friend
    #560512

    Thanks Leo that worked a treat.

    Jim

    James Weston Friend
    #560827

    Hi Leo,

    Just realised that this worked on the desktop version but didn’t change the ipad version?

    Jim

    phong nam Friend
    #560859

    Could you please give me your site to check?

    Thanks

    James Weston Friend
    #560862
    phong nam Friend
    #560864

    Hi Jim,

    I checked your custom.css file, the reason is you have defined media query for 1200px then put the css inside the media query, that what it didn’t work in table devices. For e.g, your current css look like so

    @media (min-width: 1200px){
    .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > .separator {
    background: none repeat scroll 0 0 #fff
    border-right: 1px solid #e5e5e5
    color: #333333
    font-weight: 700;

    font-size: 17px;
    font-family: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0px;
    }
    .layout-media .logo-text, .layout-media .logo-text a {
    color: #111111
    }
    .magazine-section-heading {
    font-family: "Roboto Condensed","Arial Narrow","Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    }

    .magazine-section-heading {
    display: none;
    }
    .magazine-featured-links .magazine-links {
    display: none;
    }

    It should be

    @media (min-width: 1200px){
    .navbar-default .navbar-nav > li > a, .navbar-default .navbar-nav > li > .separator {
    background: none repeat scroll 0 0 #fff
    border-right: 1px solid #e5e5e5
    color: #333333
    font-weight: 700;

    font-size: 17px;
    font-family: "Roboto Condensed", "Arial Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
    padding: 12px 30px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0px;
    }
    .layout-media .logo-text, .layout-media .logo-text a {
    color: #111111
    }
    .magazine-section-heading {
    font-family: "Roboto Condensed","Arial Narrow","Helvetica Neue",Helvetica,Arial,sans-serif;
    padding-bottom: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 12px;
    }
    }
    .magazine-section-heading {
    display: none;
    }
    .magazine-featured-links .magazine-links {
    display: none;
    }

    as you can see, I added the closing tag for your media query. Could you please recheck?

    James Weston Friend
    #560866

    Thanks Leo that is perfect now. One more quick think if you look at the tablet version below the 4 adverts in the right side bar I have the subscribe module. I not on my iPad it goes outside the line of the site. Does it do that on yours? Is there a quick fix?

    Jim

    phong nam Friend
    #561049

    Yes, by default, we have disabled the sidebar position, you can enable this position in tablet again by adding

    @media screen and (max-width: 992px) {
    .t3-sidebar {
    display: initial;
    }
    }

    into custom.css file.

    James Weston Friend
    #561066

    Thanks Leo,

    I have added that to my custom.css file but unfortunately the subscribe now module still seems to poke outside the site on my iPad.

    Jim

    phong nam Friend
    #561078

    Please clear caches and recheck again Jim 🙂


    1. jim
    James Weston Friend
    #561082

    Hi Leo,

    Thats not the view I get on an ipad.

    Jim


    1. photo
Viewing 15 posts - 1 through 15 (of 19 total)

This topic contains 19 replies, has 4 voices, and was last updated by  James Weston 9 years, 1 month ago.

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