Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Jul 2009
    Posts
    17
    Plugin Contributions
    0

    Default News Box on the Central Column of Front Page

    I have installed News Box Manager on my site, however I would like for the news box to appear only on the front page, and only at the bottom of the central column.

    Failing this is there any way I can limit this box to appearing on the front page only?

    I have a reasonably good understanding of php, css & sql.

    Thanks

    Mike

  2. #2
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: News Box on the Central Column of Front Page

    I don't know this mod but in general there are a couple of ways of getting things to display only on the home page. There are php solutions but the easiest is a css solution.

    Find the ID of the element in question. Lets make it a <div> with the ID of 'thiselement'.

    First set the display to none with a rule like:

    Code:
    #thiselement{display:none;}
    This means that it won't display on any page. Then we just set it to display on the home page by adding another rule:

    Code:
    #thiselement{display:none;}
    #indexHomeBody #thiselement{display:block;}
    So, you just need to find the ID of the element that contains the news thingy....

 

 

Similar Threads

  1. Adding a News Box On the Home Page
    By Hangar9K in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 16 Nov 2011, 12:40 PM
  2. possible to show news box on the main page?
    By m.digregorio in forum Addon Sideboxes
    Replies: 0
    Last Post: 7 Jun 2011, 09:10 PM
  3. Adding a 'box' to the front page
    By jamina1 in forum Templates, Stylesheets, Page Layout
    Replies: 1
    Last Post: 25 Jul 2007, 04:28 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg