BuddyBoss Home – Web › Support Forums › Themes › OneSocial theme › Home Page Styling
Tagged: home page, home page styling, slider
- This topic has 8 replies, 3 contibutors, and was last updated 8 years, 7 months ago by Anve S..
Question
March 31, 2016 at 5:49 pm #66371@costyclanHow did you get two buttons on your demo theme home page slider?
Also, how do I change colors for buttons and text on home page slides?
And, is it possible to remove menu on desktop and mobile so that the home page is just one full screen page?
Thank youAnswers
April 1, 2016 at 1:36 am #66423@
AnonymousHi @costyclan,
You can setup your slider from OneSocial theme setting panel (see the attached screenshot).
To change the color of slider button add this css code in your theme’s custom css panel:
.bb-marketplace.page-template-homepage #main-wrap .button:not(.more):not(.product_type_simple) { background-color: gray !important; // change the color with yours // }
You can change it from slider setting page.
To remove header try this:
.site-header, nav.subheader ul.menu:hover { display: none !important; } nav.subheader { display: none !important; }
Regards
April 1, 2016 at 8:22 pm #66557@costyclan@pallavi and how do you get two buttons on slide as per the Onesocial sandbox demo?
April 1, 2016 at 8:30 pm #66558@costyclan@pallavi I tried your code to remove header but it removes for whole site, is there any way to just have it removed on the home page? I’m trying to create a clean landing page and don’t want header and menu items showing.
April 2, 2016 at 12:02 am #66569@anveHi @costyclan ,
Try following css to remove header on homepage and apply in child theme custom css option.
.home #masthead, .home #mobile-header { display: none; }
Regards
AnveApril 15, 2016 at 3:12 am #68379@costyclanHi @anve, this works perfectly for removing header from my home page, however, how can I also remove it from other pages using the page ID? I have about 5 pages including the ‘register’ page that will be accessed from the home page and I do not want my main header/menu showing on these pages?
Thank you kindlyApril 15, 2016 at 4:45 am #68387@anveHi @costyclan,
You will get a unique class on ‘body’ element of every page ,like ‘home’ on homepage . You can use that specific class to remove the header by replacing ‘home’ with that class in that same code given to you.
Regards
AnveApril 15, 2016 at 5:48 am #68390April 15, 2016 at 7:03 am #68395@anveGreat 🙂
- The question ‘Home Page Styling’ is closed to new replies.