Tagged: slider
- This topic has 18 replies, 2 voices, and was last updated 10 years, 9 months ago by
Gerald.
-
AuthorPosts
-
November 24, 2014 at 2:23 am #47958
Gerald
ParticipantI have a thin line between the secondary menu and the slider on my home page. The line appears to be green. How do I get rid of this line? Or at least change the color?
plexpod.com
November 24, 2014 at 2:52 am #47962Gerald
Participant1. How do I center the Homepage Headline and Subheadline?
2. How do I center the homepage featured content headline?
3. Is there a way to create gaps between the sections of the home page in order to see the back ground image occasionally as you scroll down the page?
4. Is there a way to add more gap to the sides of the page, in order to see more of the background image?
5 I cannot get this page (plexpod.biz/mission/) to format to “No sidebar, Full Width”. I want to get rid of the white around the image so the image can be full width.
6. How do I prevent page titles from appearing at the top of the body in each page.November 24, 2014 at 10:48 pm #48010Sakin
Keymaster@Gerald: To remove the line between the secondary menu and the slider, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
#masthead { border: none; }
November 24, 2014 at 11:05 pm #48011Sakin
Keymaster@Gerald:
1. You can add the following css in “Appearance => Theme Options => Custom CSS” box#homepage-message .left-section { text-align: center; width: 100%; }
2. You can add the following css in “Appearance => Theme Options => Custom CSS” box
#featured-post .entry-title { text-align: center; }
3. This is bit complicated. But I will try. Add the following css in “Appearance => Theme Options => Custom CSS” box
.home .site { background: none transparent; } .home #masthead { background-color: #fff; margin-bottom: 20px; } #main-slider, #homepage-message, #main #featured-post { margin-bottom: 20px; }
4. This has already been solved by answer 3
5. You can add the following css in “Appearance => Theme Options => Custom CSS” box
.no-sidebar-full-width #main { padding-left: 0; padding-right: 0; }
6. You can add the following css in “Appearance => Theme Options => Custom CSS” box
.page .entry-header { display: none; }
November 25, 2014 at 12:11 am #48018Gerald
ParticipantWow!Thanks Sakin! Everything worked really well, except… #masthead { border: none; }
Notice the green line (1 pixel wide) between the secondary menu and the slider. I would like to get rid of that small green line. Any ideas?
Thanks for everything else! Great support!
November 25, 2014 at 12:26 am #48020Sakin
Keymaster@Gerald: I see that there is extra css which is adding the border. Can you check if you could find the following css. If you find that then please delete that.
#masthead { border-bottom: 1px solid #6a6; }
Otherwise, you need to replace
#masthead { border: none; }
with the following css:
.site #masthead { border: none; }
November 25, 2014 at 12:46 am #48023Gerald
ParticipantFound it – thanks!
BTW, on the Home Page Headline Text, is there a way to spit my content between two lines?
Thank you again!
November 25, 2014 at 1:02 am #48024Gerald
ParticipantOne other question Sakin… is there a way to change the scrolling of the page to include an effect of elasticity? I would like the gaps between the sections of the page to stretch or even overlap? I’m trying to create the bouncy feel when scrolling through the content.
November 25, 2014 at 7:51 am #48034Gerald
ParticipantHow do I make the header top sidebar background transparent? I want to put my social media widget here but without a background.
Thanks again.
November 25, 2014 at 12:47 pm #48039Sakin
Keymaster@Gerald:
1. In homepage headline, you can split the content to next line by adding in the HTML code<br />
2. That bouncy effect is not there in this theme. Sorry for that.
3. I don’t see header top sidebar in your site. But to make that background transparent. You can add the following css:
.header-sidebar { background: none transparent
November 26, 2014 at 7:28 am #48065Gerald
ParticipantSakin, thanks. I put the header top sidebar back up on the site so you could see it. I added the code “.header-sidebar { background: none transparent” and added a } to the end (I expect it needs that). It didn’t make it transparent. Any other ideas on that?
Also, how do I get my background to remain static on my iPad and iPhone. It is static on my computer browser and I like the effect of it being fixed and not scrolling.
Thanks again!
November 26, 2014 at 10:40 pm #48097Sakin
Keymaster@Gerald: I see the following css in your custom css. Remove background color from that.
So replace.home #masthead { background-color: #fff; margin-bottom: 10px; }
with
.home #masthead { margin-bottom: 10px; }
Then add the following css:
#masthead { background-color: transparent; }
November 26, 2014 at 11:35 pm #48107Gerald
ParticipantThanks. What about the static background issue. My background doesn’t scroll on my computer browser, but does scroll with the site on my mobile devices (iPad, iPhone). Can the background remain static on mobile devices?
Thanks again for all your help.
November 27, 2014 at 9:45 pm #48133Sakin
Keymaster@Gerald: It’s IOS issue so not sure about how to fix that. Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.
body.custom-background { background-attachment: fixed !important;; background-size: cover !important; }
December 4, 2014 at 4:25 am #48463Gerald
ParticipantSakin, take a look at my “homepage feature options section” on the home page… how do I get more pad (space) between the text and the edge of the window on the far left and right sides of the page? The words are too close to the edge on either side.
December 4, 2014 at 11:43 am #48475Sakin
Keymaster@Gerald: The the previous css that I gave your for full width conflict with homepage. So, can you replace the following css:
.no-sidebar-full-width #main { padding-left: 0; padding-right: 0; }
With:
.page.no-sidebar-full-width #main { padding-left: 0; padding-right: 0; }
December 4, 2014 at 8:23 pm #48505Gerald
Participant@Sakin that works but then adds an unwanted pad around the slider images.
December 5, 2014 at 1:35 am #48514Sakin
Keymaster@Gerald: Then unwanted pad around the slider image is there as your image is smaller then the page width. Your slider image width is just 1024px where as the required image size is width 1280px.
December 5, 2014 at 8:26 pm #48535Gerald
ParticipantExcellent @Sakin, thank you again!
-
AuthorPosts
- The topic ‘line between secondary menu and slider’ is closed to new replies.