Notifications
Clear all

wpForo 1.x.x [Solved] hello you guys i need little help

8 Posts
2 Users
1 Reactions
759 Views
Posts: 10
Topic starter
(@moshe)
Active Member
Joined: 4 years ago

i have a wp site and i installed wpforo this is my site:

http://arena-il.com/

and this is my wpforo

http://arena-il.com/community/

now i want that in the forum page it will be only the forum without the part of my site only the forum in full screen

how can i do it? 

7 Replies
Alvina
Posts: 1863
Moderator
(@alvina)
Member
Joined: 5 years ago

Hi @moshe,

Please try the following code:

body.page-template-default.page.page-id-207.wpforo.wpf-dark.wpft-forum.has-slider header.site-header{
display: none;
}

The CSS code should be added in the Dashboard > Forums > Settings > Styles admin page "Custom CSS Code" textarea.

In any case please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.

6 Replies
(@moshe)
Joined: 4 years ago

Active Member
Posts: 10

@alvina

hi alvina thank you i change changed this code from

#wpforo-wrap {
font-size: 13px; width: 100%; padding:10px 0; margin:0px;
}

to

#wpforo-wrap {
font-size: 13px; width: 100%; padding:10px 0; margin:0px;
}
body.page-template-default.page.page-id-207.wpforo.wpf-dark.wpft-forum.has-slider header.site-header{
display: none;
}

and its great and in full screen

http://arena-il.com/community/

but i get enter to some forum its bring the site section back

http://arena-il.com/community/arena/

Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1863

@moshe,

Please delete the code provided above and use the following one: 

body.page-template-default.page.page-id-207 .site-header{
display: none;
}
(@moshe)
Joined: 4 years ago

Active Member
Posts: 10

@alvina

thank you alvina! thats great

how can i do the same with the bottom of the site

(@moshe)
Joined: 4 years ago

Active Member
Posts: 10

@alvina

and if there is some way to remove this line too

https://imgur.com/CfhkHjK

Alvina
Moderator
(@alvina)
Joined: 5 years ago

Member
Posts: 1863

@moshe,

how can i do the same with the bottom of the site

Try the following CSS code: 

body.page-template-default.page.page-id-207.wpforo.wpf-dark.wpft-forum.has-slider footer .boxed-container{
display: none;
}

and if there is some way to remove this line too

Please use the following CSS code: 

h1.entry-title {
display: none;
}
(@moshe)
Joined: 4 years ago

Active Member
Posts: 10

@alvina

thats great !! thank you.