Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1413486

    lisacole1
    Participant

    Hi
    On http://racheltildawolf.com/portfolio-item/elements/

    Please is it possible to make the space between the words Portfolio and Elements Dyslexia Reading Scheme smaller

    Also, can I get rid of the thin lines top and bottom of ‘portfolio’ and through the site?

    many thanks!

    #1413699

    Nabeel A
    Moderator

    Hi there,

    Your site is under construction, would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:

    – Link to your site
    – WordPress Admin username / password

    Don’t forget to select Set as private reply. This ensures your information is only visible to our staff.

    #1413740

    lisacole1
    Participant

    I’m really sorry, it’s not under construction now so you can see it.

    #1413887

    Jade
    Moderator

    Hi Lisa,

    Please add this code in the customizer:

    .single-x-portfolio .entry-content {
        margin-top: 0;
    }

    Hope this helps.

    #1414621

    lisacole1
    Participant

    thanks but that didn’t make any difference

    #1414840

    Thai
    Moderator

    Hi There,

    Please try with this code instead:

    .single-x-portfolio .entry-title {
        margin-top: 0;
    }

    Hope it helps!

    #1415950

    lisacole1
    Participant

    nope 🙂 no change
    here is the code I have in custom, in case anything is stopping it from working

    
    
    /*no icons before posts */
    body .entry-title:before {
      display: none !important;
    }
    
    /*get rid of underlines */
    .x-navbar .desktop .x-nav > li > a:hover > span, 
    .x-navbar .desktop .x-nav > li.x-active > a > span, 
    .x-navbar .desktop .x-nav > li.current-menu-item > a > span {
        box-shadow: none !important;
    }
    
    /*background on contact page */
    body.page.page-id-31 {
        background-image: url("http://racheltildawolf.com/wp-content/uploads/2014/10/rachelfullatdeskoptomised.jpg");
    background-size: cover;
        background-repeat: no-repeat;
        background-position: top center;
    }
    .site {
        background-color: transparent;
    }
    /*white background on post and sidebar so background shows*/
    .single-post .x-container.max.width.offset {
        background-color: #fff;
        width: 100%;
        padding: 56px;
    margin:0 auto;
    }
    .single-post header.x-header-landmark {
        background-color: #fff;
        width: 100%;
        margin: 0 auto;
    }
    
    /*white background blog page with feed*/
    .page-id-466 .site {
        background-color: #fff;
    }
    
    h1, .h1{
    font-size:20px;
    
    }
    h2, .h2{
    font-size:28px;
    }
    h3, .h3{
    font-size:18px;
    }
    h4, .h4{
    font-size:16px;
    }
    h5, .h5{
    font-size:14px;
    }
    
    .h-comments-title {
        margin: 0px 0px 0.5em;
        font-size: 120%;
        font-weight: 300;
        line-height: 1.1;
    }
    .x-comment-author {
        display: inline-block;
        font-size: 100%;
        letter-spacing: -1px;
        line-height: 1;
        border-radius: 3px;
    }
     
      
    /*remove meta from one post */
    
    .postid-1 .p-meta span:nth-child(2) {
      display: none;
    }
    
    /*remove sidebar from portfolio */
    .x-portfolio .entry-info,
    .x-portfolio .entry-extra {
        float: none;
        width: 100%;
        margin-bottom: 30px;
    }
    
    /*remove border from images */
    .entry-featured {
    border: none;
    padding: 0;
    }
    
    /*removedate and time from portfolio */
    .x-portfolio .entry-cover-content > span {
        display: none;
    }
    
    /*portfolio overlay colours */
    
    .x-portfolio .entry-cover {
        background-color: #A9A9A9 !important;
    opacity: 0.7;
    }
    
    h2.entry-title.entry-title-portfolio {
        color: #fff !important;
    }
    
    .single-post .entry-featured, 
    .single-x-portfolio .entry-featured {
      display: none;
    }
    
    /*remove slide and meta on portfolio */
    
    .x-portfolio .entry-cover {
        display: none;
    }
    .x-iso-container-portfolio .entry-featured .entry-thumb:hover {
        cursor: pointer;
    }
    
    .single-x-portfolio .entry-title {
        margin-top: 0;
    }
    #1416300

    Thai
    Moderator

    Sorry for the confusion!

    Please try with this CSS instead:

    .single-x-portfolio .entry-header {
        margin-top: 0;
    }

    Regards!

    #1417362

    lisacole1
    Participant

    thank you – that moved it up but I still have the 2 horizontal lines, can I get rid of them please

    #1417444

    Paul R
    Moderator

    Hi,

    To get rid of the lines, you can add this under Custom > Edit Global CSS in the Customizer.

    
    .x-header-landmark {
       border:0;
    }
    

    Hope that helps.

    #1418750

    lisacole1
    Participant

    that got rid of the lines but there is still a big gap between portfolio and “cats for advent calendar”

    #1418841

    Paul R
    Moderator

    Hi,

    You can add this under Custom > Edit Global CSS in the Customizer.

    
    .single-x-portfolio .entry-header {
        margin-top: 0 !important;
    }
    
    .single-x-portfolio  .x-container.offset {
        margin-top: 0 !important;
    }
    

    Hope that helps.