Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #78005
    knudkp
    Participant

    Running lates WP with Pro theme …

    I dont know if it is the theme, but my backend is pretty slow … could it be the theme?

    #78022
    Sakin
    Keymaster

    @knudkp: Backend with theme customizer is slow. But this slow will happen only in “Appearance => Customize”. Other section should be fine.

    #78064
    knudkp
    Participant

    Welll .. I can understand that.

    Today I just found out that it was a plugin who ‘killed’ the speed.

    —————–

    An idear:

    i have made some changes to the custom CSS. Now I cannot remember what the different part does.

    Thos questions we make, like “hwo do we change this and that” – perhaps you can include them in comming updates of the theme, so it is already build in the next versions?

    #78071
    Sakin
    Keymaster

    @knudkp: Yes, you need to carefully select plugin. Thanks for finding out the issue.

    Which Custom CSS are you talking about? Sorry I don’t it what you mean.

    #78075
    knudkp
    Participant

    These CSS:

    (Further nire, I tried to use the comment thing */ but then nothing worked for me)

    .no-sidebar.content-width #main { width: 100%; }
    .page .entry-title {
    	display: none;
    }
    
    #supplementary .widget {
        padding-top: 0;
        padding-bottom: 0;
    }
    #promotion-message { border: none; }
    #78092
    Sakin
    Keymaster

    @knudkp:
    1. The following css is not needed. It must be there when you are using Catch Base free theme which doesn’t have layout “No Sidebar (Full Width)”. But in Pro version, you can select layout “No Sidebar (Full Width)” http://catchthemes.com/demo/catch-base/layout-options/no-sidebar-full-width/
    .no-sidebar.content-width #main { width: 100%; }

    2. The following css is to remove page tittle. You can add comment like this

    /* Hide Page Title */
    .page .entry-title { display: none; }

    3. The following css removes padding top and padding bottom in your Footer Sidebar Widgets.

    /* Remove Spaces in Footer Widgets */
    #supplementary .widget {
        padding-top: 0;
        padding-bottom: 0;
    }

    4. The following css removes border in your Promotion Headlines.

    /* Remove border in Promotion Headlines */
    #promotion-message { border: none; }
Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Slow backend’ is closed to new replies.