Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • #109777
    wouwonline
    Participant

    Hi, I want to reduce the white space between the logo and large image. I tried the code you gave me for another theme, but it’s not working. Can you give me the correct code for this pro theme?
    http://huisjehurenoptexel.com/

    Thanks!

    #109783
    Pratik
    Keymaster

    Hi @wouwonline,
    Try following code:

    
    #header-content {
        padding-bottom: 0px;
    }
    

    Increase 0px it you want some space.

    Regards,
    Pratik

    #109787
    wouwonline
    Participant

    It works, thanks!
    another question, there’s a Post shown on the homepage, how can I delete all information like ‘author, time, date etc.’?

    #109789
    Pratik
    Keymaster

    Try following code:

    
    .blog #content div.entry-meta {
        display: none;
    }
    
    #109792
    wouwonline
    Participant

    thanks, and can I also delete:

    Geplaatst in Uncategorized | Laat een reactie achter

    ?

    #109793
    Pratik
    Keymaster

    Ok, for that, just remove div from previous code. It will look like:

    
    .blog #content .entry-meta {
        display: none;
    }
    
    
    #109812
    wouwonline
    Participant

    And how can I change the color of the H2, H3 etc. headers? I don’t see them in the color section.

    And is it possible to change the layout? I want the content part bigger and the side widgets part smaller. About 75% content and 25% side widgets. Hope it’s possible!

    #109927
    Pratik
    Keymaster

    Hi @wouwonline,

    It depends on which one you want. for basic h2 and h3, just do following:

    
    h2, h3 {
        color: #f2f2f2; /* Change this value to your desired hex color */
    }
    

    For layouts, try following:`

    
    @media screen and (min-width: 961px) {
        #primary { width: 75%; }
        #secondary { width: 24%; }
    }
    

    Let me know how it goes.

    Regards,
    Pratik

    #109953
    wouwonline
    Participant

    h3 is working, but h2 stays black…

    the layout is working, thanks

    #109955
    wouwonline
    Participant

    Hi, how can I delete the borders around the pictures?

    #109961
    wouwonline
    Participant

    And how can I delete the borders from tables? I put in the table code: border=”0″, but still the borders are shown.
    see: http://huisjehurenoptexel.com/boeken-en-prijzen/

    #109962
    Pratik
    Keymaster

    Hi @wouwonline,

    To remove image border, use following code:

    
    #slider img {
        width: 100%;
    }
    

    About h2, can you let me know which h2 are you talking about. I need specific information as something else is overriding my given CSS.

    Regards,
    Pratik

    #109967
    Pratik
    Keymaster

    Hi @wouwonline,

    It looks like you have nested multiple table(table inside table), thats why it looks wierd.

    Try following code:

    
    .entry-content td,
    .comment-content td {
        border: 0;
    }
    

    Regards,
    Pratik

    #109987
    wouwonline
    Participant

    Hi, now only the bottom borders are visible under the tables. Can I also get rid of them?
    http://huisjehurenoptexel.com/boeken-en-prijzen

    I used H2 headers on pages, you can select what style you give the text: alinea, h2, h3 etc. there’s a drop down in the styles menu, for example H2 on this page: http://huisjehurenoptexel.com/contact

    For the borders around images, I mean the images you can place on pages (not slider on homepage). Is it also possible to delete that border?

    #110039
    Pratik
    Keymaster

    Hi @wouwonline,

    For Table bottom border, use:

    
    .entry-content table {
        border-bottom: none;
    }
    

    For content h2, use:

    
    .entry-content h2 {
        color: #f2f2f2;
    }
    

    For Image border, use:

    
    #content img { border:none; }
    

    Let me know if I got them this time 🙂

    Regard,
    Pratik

    #110921
    wouwonline
    Participant

    Thank you very much, it all works 🙂

    Do you know how you can change the background of the jetpack gallery? It’s black on all websites, but I would like to make it transparent.

    #110922
    Pratik
    Keymaster

    Hi @wouwonline,

    I am glad all your other issues were solved. About the JetPack gallery issue, you will need to consult their support forum.

    Regards,
    Pratik

    #111005
    wouwonline
    Participant

    Thanks.

    Other question: The facebook widget in de sidebar is not working when I’m looking in anonymous mode.
    http://huisjehurenoptexel.com/activiteiten-texel/

    When I look in my own browser when I’m logged in, it does work. But in anonymous browser it doesn’t work.

    #111007
    Pratik
    Keymaster

    HI @wouwonline,

    I checked the site and the widget is not working. Again, you will need to contact the support of the plugin that gives this feature.

    Regards,
    Pratik

Viewing 19 posts - 1 through 19 (of 19 total)
  • The topic ‘Make space between image and logo smaller’ is closed to new replies.