-
AuthorPosts
-
James Weston Friend
James Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 21, 2015 at 11:38 am #204000Hi 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
Radonja Djurisic FriendRadonja Djurisic
- Join date:
- September 2014
- Posts:
- 316
- Downloads:
- 180
- Uploads:
- 113
- Thanks:
- 66
- Thanked:
- 72 times in 15 posts
February 21, 2015 at 7:30 pm #560244Go to extensions> module manager
set filter position to see news homeu will see module [Magazine – Home] Featured News 1
open and edit number of link items to 0
hope this help
Tolja
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 22, 2015 at 4:31 am #560274Thanks 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 FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 24, 2015 at 7:54 am #560482Hi 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 Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
February 24, 2015 at 8:35 am #560486Hi 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
2 users say Thank You to phong nam for this useful post
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 24, 2015 at 10:51 am #560512Thanks Leo that worked a treat.
Jim
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 26, 2015 at 2:19 pm #560827Hi Leo,
Just realised that this worked on the desktop version but didn’t change the ipad version?
Jim
phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
February 27, 2015 at 12:41 am #560859Could you please give me your site to check?
Thanks
1 user says Thank You to phong nam for this useful post
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 27, 2015 at 1:04 am #560862phong nam Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
February 27, 2015 at 1:27 am #560864Hi 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?
1 user says Thank You to phong nam for this useful post
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
February 27, 2015 at 1:35 am #560866Thanks 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 Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
March 1, 2015 at 9:57 am #561049Yes, 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.
1 user says Thank You to phong nam for this useful post
James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
March 1, 2015 at 1:27 pm #561066Thanks 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 Friendphong nam
- Join date:
- May 2015
- Posts:
- 3779
- Downloads:
- 1
- Uploads:
- 587
- Thanks:
- 499
- Thanked:
- 974 times in 888 posts
March 1, 2015 at 3:32 pm #561078James Weston FriendJames Weston
- Join date:
- September 2014
- Posts:
- 1030
- Downloads:
- 11
- Uploads:
- 70
- Thanks:
- 408
- Thanked:
- 16 times in 1 posts
March 1, 2015 at 4:25 pm #561082AuthorPostsThis topic contains 19 replies, has 4 voices, and was last updated by James Weston 9 years, 8 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum