• Hi,

    Have just moved from wp.com to .org and required a whole new theme. I am happy with the chosen one, though still need to make some more changes. The one major issue I have is under the header, on my home page, it says Blog / Home in large letters before my list of posts. I really dislike it, paricularly the Blog term, as it is a blog, it doesn’t require the main section of my site pointing it out!

    I have looked in menu but can’t see a way to remove or edit it, can anyone help? I am the first to say I am really not skilled in this area – have realised this more than ever since the move, so apologies if I am missing something obvious. This is my site https://bigtroubleinlittlenappies.com/

    Thank you!

Viewing 14 replies - 1 through 14 (of 14 total)
  • Hello!

    I have tried to check out your site, but I am getting only an error message ?? Please check it out. It looks like that the Options Framework plugin is causing it… If you can reach your admin area, please try deactivating it. If that is also unavailable, just let me know and I can help you deactivate it manually ??

    Cheers,
    Balint

    Thread Starter yvetteweston

    (@yvetteweston)

    Thank you – my site is now up and running again with the school theme, if you did have chance to take a look at some point again please ??

    The other thing is my uploaded header image does not cover the full width of the site for some reason, yet on school’s preview theme, that image does. I have used the same image for my wp.com blog and thought it stretched to fit anyway – I just thought I would mention in case it is something simple you might know about, but no problem if not.

    Thank you!

    Hello!

    I am glad You were able to solve the issue with Your site ?? I have tried to answer to Your question in the other topic, however the admin marked it closed, so I will answer it here.

    Without checking the actual code of the plugin and the theme You are using, it is really hard so say exactly what caused the error, but from the error message I guess it was some kind of compatibility error, between the mentioned plugin and an other plugin or theme… If you would like, I can take a look. In any case, the good thing with WordPress is that even if this kind of error stops Your site, all Your data, the posts, pages, comments, uploaded files are completely safe, there is no chance of losing anything ??

    I have checked the issues You have described in this post, please install a custom css plugin (I recommend Simple Custom CSS), and in Appearance->Custom CSS please paste in this css code:

    #kt-header-image .img-responsive {
    	width: 100% !important;
    }
    
    #kt-blog-title .small {
        display: none;
    }

    Please let me know if this is what You had in mind ??

    Cheers,
    Balint

    Thread Starter yvetteweston

    (@yvetteweston)

    Hi Balint,

    Thank you so, so much – the header image is now perfect and fully across the screen.

    The word ‘Blog’ with a pen and circle is still there though not the word ‘Home’ underneath it… I can’t actually remember if Home definitely was there before but I think it was (sorry!)

    I guess maybe it can’t be removed? Or should this be something I am able to edit out with CSS code?

    I appreciate your help so much ?? Thanks also for the info on the possible reasons, it’s a relief to know my site is safe if it happens again though as I didn’t know that. Am used to the security of wp.com!

    Thanks,
    Yvette

    Hi Yvette!

    I took a look at the site and might have figured it out for you. Enter the code below in the custom CSS

    .col-md-11 h1 {
        display: none;
    }

    Let me know if that works!

    Good Luck!
    Robyn

    Me again!

    I reviewed your post and I noticed you wanted both the word Blog and the pencil icon gone…so ignore the code above and use the following:

    .col-md-11 .col-md-1 {
        display: none;
    }

    Try that and let me know how it goes!

    Robyn

    Thread Starter yvetteweston

    (@yvetteweston)

    Hi Robyn,

    Thanks so much for your help and sorry for causing more work by not mentioning the pencil icon in my first post.

    I’ve tried your code and it unfortunately hasn’t worked. It’s also moved the header back so it doesn’t cover the width of the site. I have left it as it is (with this code) if you have time to have a quick look again, though I appreciate you may not have!

    Thanks again,
    Yvette

    Hello Yvette!

    Sorry for my slow reply, I was working so I could not get an answer for You sooner ??

    I think I have misunderstood Your initial description too, but here is the code to hide the elements You have mentioned:

    #kt-main #kt-blog-title .icon_pencil {
        display: none;
    }
    
    #kt-blog-title .col-md-11 > h1 {
        display: none;
    }
    
    #kt-blog-title .small {
        display: none;
    }

    Regarding the header image, is my previous code still applied?

    Cheers,
    Balint

    Thread Starter yvetteweston

    (@yvetteweston)

    Balint,

    Thank you SO much! It has removed the Blog part and the pencil icon, and yes I have applied your code again for the header (my mistake replacing it earlier).

    I am really grateful – you guys are so helpful, supportive and kind ?? I wish I could return the favour but as you will have seen am completely clueless with any of this!

    I’m so happy with how the site looks now, when I first changed over I didn’t like it at all but was really limited in what I could change myself.

    THANK YOU! ??

    You are welcome ?? I am really happy that I could help You out and that You are satisfied with the outcome ??

    Have a nice day!

    Balint

    Hi,

    I am really new at all of this. I was reading several post but couldn’t find an answer. I want to edit the title of my page. I found out that in order to have the text as I want it, I need to write this code:

    <sup>spanish</sup> ? ! <sub>route</sub>

    This way I will have superindex and subindex letters. I also wanted to change the colors in order to have the ?! in red so I found out that I needed something like this writte:

    <span class=”s-1″><sup>spanish</sup></span> <span class=”s-2″>? ! </span><span class=”s-1″><sub>route</sub></span>

    span.color-1 { color: #ffffff; }
    span.color-2 { color: #ff0000; }

    I don’t know if this is correct. I have try to add it to the style.css page but nothing seems to work. This is the area of the titles:

    MAIN
    *
    ***/
    #kt-main{
    margin:20px 0;
    }
    #kt-blog-title{
    margin:25px 0;
    }
    #kt-blog-title i{
    background:#5dc08b;
    height:80px;
    width:80px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    font-size:50px;
    display:block;
    padding:15px 16px;
    }
    #kt-blog-title h1{
    color:#5c4152;
    padding-bottom:6px;
    border-bottom:2px solid #e77a7d;
    margin-bottom:2px;
    }
    #kt-blog-title .small{
    font-size:15px;
    color:#5c4152;
    }
    #kt-blog-title .small a{
    color:#5c4152;
    }

    Could somebody help me please! I am using the school-theme. Thanks in advance for any help with this!!!

    Hi again!!!

    I just found that this is the code that actually affects the title:

    #kt-logo h1,
    #kt-logo h3{
    margin:0;
    }
    #kt-logo h1 a{
    color:#ffffff;
    }

    I haven’t found yet how to amend it. Any help will be most appreciated!

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Hi ericmalbran, it is unlikely you’re experiencing the same problem as the person who created this thread. Could you open a new thread here: https://www.ads-software.com/support/forum/themes-and-templates#postform

    Thank you Andrew I will do!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘[school theme by ketchup] way to remove top menu’ is closed to new replies.