[Resolved] Rewrite URL fragment/anchor

Home Forums Support [Resolved] Rewrite URL fragment/anchor

Home Forums Support Rewrite URL fragment/anchor

Viewing 5 posts - 16 through 20 (of 20 total)
  • Author
    Posts
  • #1238385
    David
    Staff
    Customer Support

    Here is the CSS for Split:

    .inside-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    
    .header-widget {
        order: 10;
        overflow: visible;
    }
    
    .nav-float-right .header-widget {
        top: auto;
    }
    
    .nav-float-right .header-widget .widget {
        padding-bottom: 0;
    }
    
    .site-branding,
    .site-logo {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        z-index: 200;
    }
    
    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"],
    a.button,
    a.button:visited,
    a.wp-block-button__link:not(.has-background) {
        border: 1px solid transparent;
    }
    
    button.ghost,
    html input[type="button"].ghost,
    input[type="reset"].ghost,
    input[type="submit"].ghost,
    a.button.ghost,
    a.button.ghost:visited,
    a.wp-block-button__link.ghost:not(.has-background) {
        background: transparent;
        color: inherit;
        border-color: inherit;
    }
    
    button.ghost:hover,
    html input[type="button"].ghost:hover,
    input[type="reset"].ghost:hover,
    input[type="submit"].ghost:hover,
    a.button.ghost:hover,
    a.wp-block-button__link.ghost:not(.has-background):hover {
        background: transparent;
        color: #1e73be;
    }
    
    .hero-buttons>* {
        margin: 10px;
    }
    
    .widget-area .widget_search {
        padding: 0;
    }
    
    #mobile-header .mobile-bar-items {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        margin-left: auto;
    }
    
    .no-sidebar .inside-article>*,
    .no-sidebar #comments,
    .no-sidebar .nav-links {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .no-sidebar .generate-columns-container .inside-article>* {
        max-width: none;
    }
    
    .nav-links>* {
        padding: 5px 15px;
        border-width: 1px;
        border-style: solid;
        border-color: inherit;
    }
    
    .entry-content .happyforms-flex {
        padding: 0;
    }
    
    #site-navigation {
        float: none;
        width: 100%;
    }
    
    .main-navigation:not(.slideout-navigation):not(.mobile-header-navigation) .main-nav>ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    
    .main-navigation .menu-item-separator {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
    
    .main-navigation .menu-item-separator a {
        font-size: 0;
        background: transparent !important;
    }
    
    .slideout-navigation .menu-item-separator,
    .main-navigation.toggled .menu-item-separator {
        display: none !important;
    }
    
    @media (max-width: 768px) {
        .inside-header>:not(:last-child):not(.main-navigation) {
            margin-bottom: 0;
        }
    }
    #1239043
    Anonymous

    Thanks David. It was imported successfully.

    Does the child theme introduce any other changes that need to be reinstated which may not be immediately obvious like the additional CSS?

    If yes, what are these?

    #1239274
    David
    Staff
    Customer Support

    The only other one that springs to mind that is sometimes affected is the Site Logo.

    #1239427
    Anonymous

    Thanks David. It appears that it also affects the copyright option in the footer.

    #1239822
    David
    Staff
    Customer Support

    Aah yes – forgot about that 🙂

Viewing 5 posts - 16 through 20 (of 20 total)
  • You must be logged in to reply to this topic.