• I updated my site last night and today and now I am having a couple of issues.

    My slider setup is too large for the theme. It extends out past the rest of the page. How can I update this to be the same size as the theme? I tried making the theme larger and it just keeps making the slider larger as well.

    Also, I had my copyright info centered in the footer and the update pushed it just to the left pane of the footer. How can I center it again?

    Thanks in advance.

    The page I need help with: [log in to see the link]

Viewing 15 replies - 1 through 15 (of 17 total)
  • Thread Starter kaj1976

    (@kaj1976)

    Also wanted to add there is a random blank space above the slider and the preview box no longer goes to the bottom of the image.

    Both of these things look fine when in the backend of the site but I can not adjust them. It does not matter what I do.

    Theme Author silverks

    (@silverks)

    Looks like your site is using some kind of caching plugin that combines all the stylesheets and writing it to the page’s source code. Try clearing the plugin’s cache and see if the issue persists.

    Thread Starter kaj1976

    (@kaj1976)

    It is still happening.

    Any other suggestions?

    Theme Author silverks

    (@silverks)

    Try disabling the caching plugin. Also, do you have any code added to Customizer > Additional CSS?

    Thread Starter kaj1976

    (@kaj1976)

    I turned off autoptimize and it looks way better.

    Am I not able to use that plugin with this theme?

    Also, can you help me move the copyright code to the center of the footer like I had it before?

    Thanks!

    Thread Starter kaj1976

    (@kaj1976)

    I was told to add this a few months ago.

    .copyright-developer {
    width: 100%;
    }

    If I have that in place it moves the footer text half off the screen to the left.

    I turned off autoptimize and it looks way better.

    Am I not able to use that plugin with this theme?

    You might have to do some troubleshooting to work around Autoptimize issues with the updated theme @kay1976, start by disabling CSS optimization to confirm the problem is due to that specifically (sounds like it). If so you’ll have to exclude some of the CSS from optimization. There’s more info in AO’s FAQ on troubleshooting and how to exclude.

    hope this helps,
    frank

    Theme Author silverks

    (@silverks)

    .copyright-developer {
    width: 100%;
    }

    Try replacing that with this code:

    
    @media (min-width: 768px) {
    .copyright-developer {
    width: 90%;
    right: -5%;
    top: -45px;
    margin-bottom: -45px;
    }
    }
    
    • This reply was modified 6 years, 10 months ago by silverks.
    • This reply was modified 6 years, 10 months ago by silverks.
    Thread Starter kaj1976

    (@kaj1976)

    I turned Autoptimize back on and left the css out. Seems to be rendering correctly now.

    Also the code above fixed the footer but it made the social links unclickable. I did turn them off for now, any idea why?

    I assume the container is over the social container.

    Thanks to you both.

    Theme Author silverks

    (@silverks)

    Try again with width: 90%; and right: -5%;

    Thread Starter kaj1976

    (@kaj1976)

    Was still blocking a couple of them. I moved it down a bit and all seems well.

    Would love to align the way you are trying to get them but it isn’t bad now.

    Thanks!

    Theme Author silverks

    (@silverks)

    You can play around with the width and right properties. Reduce the width property, and adjust the right property to be negative half of the remaining space.

    E.g.:

    
    width: 90%; right: -5%;
    width: 80%; right: -10%;
    width: 70%; right: -15%;
    
    Thread Starter kaj1976

    (@kaj1976)

    Got it

    60% -20% was the magic combo.

    Thanks again!

    Thread Starter kaj1976

    (@kaj1976)

    The issue popped back up with the most recent update. I tried to adjust numbers but nothing is working.

    Can you help center the copyright again so it does not interrupt the social icons?

    Thanks

    Theme Author silverks

    (@silverks)

    Try removing that CSS code. They should not be needed anymore after the last update.

Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘New Issues After Update’ is closed to new replies.