• Hi,
    We have set up a two child pages under our parent page “pricing”. However, when you hover over the parent page you will see a shadow of the child page but the drop down menu seems to hiding behind the post or the menu bar.

    We are also finding that the header slideshow seems to shift to the right and we lose the white border but only on the home page. We have discovered that setting the page to “full width” eliminates the issue, however, we need the page to be set to a blog setting.

    Also, on the homepage, we have the comment section enabled but the comment field is still missing.

    Another issue we are having with our blog posts is that when you click on the title of the post the link does not take us anywhere. And we do not know why that is.

    Finally, we would love to know how to manipulate the width of the text on the home page and center the title of our posts.

    Thank you so much,
    Dana

    https://www.lovelouisephotography.com

Viewing 8 replies - 1 through 8 (of 8 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Are you sure that’s the correct website URL?
    Are you using a Child Theme or plugin that provides Custom CSS functionality?

    Thread Starter danawrites

    (@danawrites)

    I see that the URL doesn’t work like that….

    try this lovelouisephotography.com

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Still doesn’t work.

    Thread Starter danawrites

    (@danawrites)

    please try again. I misspelled it but I edited it and it should work now..

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Does that theme come with a section in the dashboard named something like, “Custom CSS” or “Jetpack”?

    Thread Starter danawrites

    (@danawrites)

    Yes it has Jetpack.

    paul.a.cunn

    (@paulacunngmailcom)

    To center all post titles use the following in custom css

    .entry-title {
    text-align: center;
    }

    It also sounds to me like you want the entire width of your content area to be larger. In order to do this paste the following into your css. The % represents the width of the “wrapper” you can change this or use pixels. This should do what you want.

    .page-template-template-no-sidebars-php #wrapper,
    .page-template-template-blog-no-sidebars-php #wrapper,
    .page-template-template-portfolio-no-sidebars-php #wrapper {
    max-width: 80%;
    }
    As for the slider I am not sure exactly what you want but if you need to edit the size of the slider just use the following in your css. You can use %s or pixels to adjust the width. Also to change the location of the slider just change the float to left as done below and then use the margin left to place it where you want. Again you can use %s or pixels. The clear function makes it so nothing shows up to the left, right, or both sides of the slider. You can change that to whatever is best for you site.

    #slider {
    width: 90%;
    float: left;
    margin-left: 35%;
    clear: both;
    }

    For the menu issue did you go to your menu settings and add the pages as child pages there as well if you did, it should have the parent page and then under it the child page shifted to the right a little bit.

    Thread Starter danawrites

    (@danawrites)

    Thank you so much for your response. The width and entering issues have been resolved, we are still trying to figure out how to get our comment box to show up on our homepage which is set to the blog no sidebars template.
    We also still have the issue of the drop down menus hiding behind the main part of the page. Any ideas on those?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Drop Down Hiding’ is closed to new replies.