• Resolved Heyitsrick

    (@heyitsrick)


    Every post/page has what appears to be some kind of fancy horizontal ruler baked into the content at the bottom. These lines fade in/out on the left and right side of the pages at the bottom. They look like they are there for some kind of artistic flourish, but I’d prefer they not appear. Is there a way to disable that?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi,

    You need to post your website url when you ask a question.
    Folks here need to see it, in order to provide solution.

    Thank you.

    Thread Starter Heyitsrick

    (@heyitsrick)

    Sure – it’s a development site right now. I was under the impression that this was a universal feature so didn’t post the site before.

    http://dev.cryderpoint.com

    Look at the bottom of the home page. There’s a line that I described under the “home-content-boxes” div, and there’s another one shortly there after in a blank area. (I’m hiding the footer.)

    Same when you look at the “Welcome” page. It just seems like all content in this theme has a baked in divider line at bottom that’s decorative, but I’d like to be optional in places.

    hey Heyitsrick how did you change you menu color to white?

    Thread Starter Heyitsrick

    (@heyitsrick)

    Go into “Theme Options”. Go into “Styling”. Check the box that says “Disable Menu Background”. Save changes.

    Hi,

    Use the following in your Theme Options -> Custom CSS

    .entry-content .widget::after{
    background:none !important;
    }

    Clear your browser cache before re-visiting your website.

    That styling is for the Theme’s widgets, and you are using Site Origins plugin which uses widgets, that’s why you see all those underline shadows in content.

    This is how it looks after using the above CSS code.
    http://i.share.pho.to/cdbee008_o.png

    Thanks!

    Thread Starter Heyitsrick

    (@heyitsrick)

    Hi, thanks – that took care of one particular background/shadow. I still had them at the bottom of my content, so had to go looking for more.

    I found them in two places. One was in a background URL in a pseudo ::before element for the #wrapper id, and one was a background URL for the home-content-boxes (front page widgets).

    Here’s what I used for the home-content-boxes to get rid of the background image:

    .home-content-boxes {
    	background: none !important;
    	}

    Here’s what I used to get rid of the background URL in the #wrapper id:

    #wrapper::before {
    	background: none !important;
    }
Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Remove fancy horizontal ruler type lines at end of post/page’ is closed to new replies.