Jump to content

Change 'Forums' display on home page


mesteele101

Recommended Posts

Posted

We were able to change the header that says 'Forums' just above the categories, and I'm unable to find out where this can be changed.

 

Did I miss something, any idea how to change this?

 

2015-03-15_13-17-02.thumb.png.0ddfcb9be7

Posted

Thanks but anyway to REMOVE it?

​Not so easy. That headline comes from a global template which affects all other apps as well. 
It’s also the main h1 headline of the page, so in terms of SEO, it’s not a bad idea to leave that in there and possibly give it another useful name if you don’t like the repetition of just “Forum”. 

Posted

I really dislike it too

The space above the forum and the un aligned top block in the sidebar is sort of 'trapped' space so to speak.

I would like to align the sidebar or eliminate the all that real estate for a redundant word/header. 

Posted

Thanks but anyway to REMOVE it?

​Add this to your theme's custom.css file:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    display:none;
}

ANYWAY TO MAKE THAT AREA SMALLER? TOO MUCH HEIGHT

​Similar methodology:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    margin-bottom: 5px;
}
body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsType_pageTitle 
{
    font-size: 20px;
}

They actually did a really good job of letting you target any specific page with CSS. :D

Posted

​Add this to your theme's custom.css file:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    display:none;
}

​Similar methodology:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    margin-bottom: 5px;
}
body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsType_pageTitle 
{
    font-size: 20px;
}

They actually did a really good job of letting you target any specific page with CSS. :D

The default theme, I'm having a problem finding a custom.css file?​

Posted

​Add this to your theme's custom.css file:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    display:none;
}

​Similar methodology:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    margin-bottom: 5px;
}
body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsType_pageTitle 
{
    font-size: 20px;
}

They actually did a really good job of letting you target any specific page with CSS. :D

​Thank you.

Posted

Thanks Marcher!

Quick question. If we remove it, will it be difficult for Google or other search engine to find my forum? in other words decrease SEO visibility?

Posted

​Would you have the time and or be willing to tutor on the above methodology?  For the most part, I want to keep my site fairly close to what is out of the box with a few tweaks here and there, similar to the ladder tweak you showed.  I am familiar http://www.w3schools.com/ and use it a little bit.  I know some html and css.  I studied your example here http://www.w3schools.com/cssref/sel_attribute_value.asp

and I get that.  I am a little lost here:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 

I think, I could pin point a few questions, and perhaps try it on another page or two and then begin to figure it out, of course with a few more question.^_^

​I know this sounds like plan English to you and many other, but I could find a few question in the above statement.  If interested, you can PM me.  Oh- and there is no huge hurry, a day or two response in between questions and answers is fine.  My site will not be live until some time after 4.0 is live.

Thank you,

 

 

​Add this to your theme's custom.css file:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    display:none;
}

​Similar methodology:

body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsPageHeader 
{
    margin-bottom: 5px;
}
body[data-pageapp=forums][data-pagelocation=front][data-pagemodule=forums][data-pagecontroller=index] .ipsType_pageTitle 
{
    font-size: 20px;
}

They actually did a really good job of letting you target any specific page with CSS. :D

​  

Posted
<body class="ipsApp ipsApp_front ipsClearfix ipsJS_has ipsApp_noTouch" data-controller="core.front.core.app" data-message="" data-pageapp="forums" data-pagelocation="front" data-pagemodule="forums" data-pagecontroller="topic" itemscope="" itemtype="http://schema.org/WebSite">

this is the body tag for this topic page.

one could just use:

.ipsAppFront[data-pageapp=forums][data-pagemodule=forums][data-pagecontroller=topic] .ipsPageHeader 

to target all topic view titles as a result.

if chrome is daily driver, inspect element in context menu and debug tools is inbuilt. if firefox, get firebug. if IE, hit f12, in-built.

Posted
<body class="ipsApp ipsApp_front ipsClearfix ipsJS_has ipsApp_noTouch" data-controller="core.front.core.app" data-message="" data-pageapp="forums" data-pagelocation="front" data-pagemodule="forums" data-pagecontroller="topic" itemscope="" itemtype="http://schema.org/WebSite">

this is the body tag for this topic page.

one could just use:

.ipsAppFront[data-pageapp=forums][data-pagemodule=forums][data-pagecontroller=topic] .ipsPageHeader 

to target all topic view titles as a result.

if chrome is daily driver, inspect element in context menu and debug tools is inbuilt. if firefox, get firebug. if IE, hit f12, in-built.

​Wow- firebug inspect element and there it is.   Even I can play around with this and probably do what I want, the key word there is probably.   Thank you a lot, Marcher!!!  Now, I have a new toy.  I will enjoy playing with it.

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...