Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1280730
    Melissa437
    Participant

    Hi,

    There are a few things I’m having problems with but if i add any code to the customise, nothing is actionned…Would you mind logging into my site and seeing what the prob;em is?

    I really would like to:

    – remove all the borders on the text in blockquote
    – make the font size smaller on feature list – to match the paragraph text

    If you could please help that would be super marvellous!!

    https://dolcelussocakes.mystagingwebsite.com

    #1280731
    Melissa437
    Participant
    This reply has been marked as private.
    #1280973
    Lely
    Moderator

    Hi Melissa,

    Please double check the credentials. It says invalid username when I tried to login.
    For CSS issues, make sure that all open curly brace { have corresponding closing curly brace }. Missing closing means CSS syntax error.

    #1281177
    Melissa437
    Participant
    This reply has been marked as private.
    #1281183
    Rupok
    Member

    Hi there,

    Thanks for writing back! You can add this under Custom > CSS in the Customizer.

    .x-blockquote {
      border: medium none;
    }

    Are you referring this as feature list? – http://prntscr.com/dfh93z

    You can use this CSS to control the font-size :

    .x-feature-box-title {
      font-size: 20px;
    }

    Hope this helps.

    Cheers!

    #1281184
    Melissa437
    Participant

    My problem is that i am adding code but nothing works…. Would you mind going into the customiser and checking what the issue is?

    #1281186
    Lely
    Moderator

    Hi Melissa,

    Look for this part on your custom CSS:

    @media (max-width: 1210px) {
        .x-navbar .x-nav-wrap.desktop {
             display:none;
          }

    Closing curly brace for the media query is missing. So custom CSS after that part will be included inside the media query. If you’re default screen size right now is more that 1210px, all those CSS below above code will not work. Only when you resize the screen to smaller size. Update above to this:

    @media (max-width: 1210px) {
        .x-navbar .x-nav-wrap.desktop {
             display:none;
          }
    /*Then move other CSS here that should work only on screesize 1210pc or less*/
    }

    Hope this helps.

    #1281269
    Melissa437
    Participant

    thanks thats great:)

    How do i remove the symbol on the blog page?

    #1281274
    Christopher
    Moderator

    Hi there,

    Please add this :

    .entry-title:before {
        content: "" !IMPORTANT;
    }

    Hope it helps.

    #1281275
    Melissa437
    Participant

    Thanks, but it is this I would like to remove:

    Also, I would like the code to change the font and size of the titles on the blog?

    #1281286
    Christopher
    Moderator

    Hi there,

    Are you trying to remove opacity and icon? if so, add following code :

    a.entry-thumb:hover img {
        opacity: 1;
    }
    .blog .entry-thumb:before,.archive .entry-thumb:before {
        content: "";
    }

    To change font family, color and size, add this :

    
    .x-iso-container-posts.cols-3 .entry-title {
        font-size: 153% !important;
        font-family: cursive;
    
    }
    .x-iso-container-posts.cols-3 .entry-title a {
        color: red;
    }
    

    Hope it helps.

  • <script> jQuery(function($){ $("#no-reply-1280730 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>