Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted March 15, 20159 yr 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?
March 16, 20159 yr Likewise. I actually want to remove/delete it because it seems kind of redundant having it
March 16, 20159 yr Enable the Quick Translation Tool in the ACP: Then open your site and click and hold on the word: Simple, isn’t it? :-)
March 17, 20159 yr 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”.
March 17, 20159 yr I really dislike it tooThe 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.
March 22, 20159 yr 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.
March 22, 20159 yr They actually did a really good job of letting you target any specific page with CSS. That's ok if can get head round how
March 22, 20159 yr http://www.w3schools.com/cssref/sel_attribute_value.aspCSS2 selector, targeting the body tag, will allow you to filter down to a specific app, module, section, or even specify front or admin location. I used all of them to target only the forums index page header on the front end.
March 22, 20159 yr Author 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. The default theme, I'm having a problem finding a custom.css file?
March 22, 20159 yr Author The default theme, I'm having a problem finding a custom.css file?Got it, duh...
March 24, 20159 yr 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. Thank you.
March 24, 20159 yr 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?
March 24, 20159 yr I'm honestly not certain if a css style to hide an element has any SEO effect.If you are worried about it, I suppose you could use a combination of text-indent: -99999px; height:5px; or similar to keep it 'visible', but off screen.3 does this.
March 25, 20159 yr 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.
March 25, 20159 yr <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.
March 26, 20159 yr <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.