Turbo

Turbo [Paid] 2.2.15a

No permission to buy ($30.00)

DohTheme

Well-known member
DohTheme submitted a new resource:

Turbo - a sleek and modern design

Mockup.png

Turbo starts out with fresh colors and gorgeous design. This theme changes the standard layout with different sidenav , sidebar and node layout.

[IMG] [IMG...

Read more about this resource...
 
I like the theme but I see that it has aesthetic flaws even in your demo.

I was also checking some other website that is using this theme.

I have detected two bugs mainly the menu canvas here has pixels of another color.

Also the links are not aligned.

here you can see how the upper part appears with a flange and the lower part is not even touching the selected button

a.webp

b.webp
Here you can check that the link is not aligned.

Are you going to solve this?
I also wonder how the CSS will look with a plugin like Feedback System.

Thanks for your help.
 
@est3ban129 What browser and OS are you using? I can't reproduce in my browser.
i fixed the menu error with this code on your demo with inspect elements

Code:
.p-nav-list .p-navEl.is-selected
{
    &::before,
    &::after
    {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 28px;
        height: 28px;
        background-size: 100%;
    }
    
    &::before
    {
        margin-top: -27px;
        background-image: url('{{ asset('dt_theme_files') }}/img/topright.svg');
        transform: rotate(90deg);
    }
    
    &::after
    {
        margin-top: 45px;
        background-image: url('{{ asset('dt_theme_files') }}/img/bottomright.svg');
    }
}
 
i fixed the menu error with this code on your demo with inspect elements

Code:
.p-nav-list .p-navEl.is-selected
{
    &::before,
    &::after
    {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 28px;
        height: 28px;
        background-size: 100%;
    }
   
    &::before
    {
        margin-top: -27px;
        background-image: url('{{ asset('dt_theme_files') }}/img/topright.svg');
        transform: rotate(90deg);
    }
   
    &::after
    {
        margin-top: 45px;
        background-image: url('{{ asset('dt_theme_files') }}/img/bottomright.svg');
    }
}
Thank you for code helping we'll consider this solution when fixing the bug.
 
Hi! I just bought this style and would like to know if there is any way to make the left stick sticky? It is not very pleasant or practical that as you go down to the left there is an empty hole

capstyle.webp
 
Top Bottom