• Resolved greku69

    (@greku69)


    Hi
    In Spun theme I want “sidebar” move to right …at the moment is on a bottom after plus is press.
    thanks for any help

Viewing 8 replies - 1 through 8 (of 8 total)
  • You need to create a child theme or use custom css plugin and work around the
    widths of content sidebar area.

    Hi Greku,

    If you’re ready to insert custom CSS, I think the solution is in this thread

    Thread Starter greku69

    (@greku69)

    hi
    I did what you guys suggested but I got side bar only on Blog page… on rest is still at the bottom .
    any suggestion ?
    thanks

    site

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Instead of this:

    .blog #primary {
    	float: left;
    	width: 70%;
    }
    
    .blog #secondary {
    	clear: right;
    	display: block;
    	padding: 50px 0;
    	float: right;
    	width: 30%;
    }
    
    .blog .sidebar-link {
    	display: none;
    }
    
    .blog .widget-column {
    	width: 100%;
    }
    
    .blog .one.widget-column {
    	float: none;
    	margin: 0 0 0 40px;
    }

    Try this:

    #primary {
    	float: left;
    	width: 70%;
    }
    
    #secondary {
    	clear: right;
    	display: block;
    	padding: 50px 0;
    	float: right;
    	width: 30%;
    }
    
    .sidebar-link {
    	display: none;
    }
    
    .widget-column {
    	width: 100%;
    }
    
    .one.widget-column {
    	float: none;
    	margin: 0 0 0 40px;
    }

    Thread Starter greku69

    (@greku69)

    Thanks Andrew I will try this later and post resoults…
    Thanks

    Thread Starter greku69

    (@greku69)

    hi Andrew
    thanks this did the trick.
    I got one more question: my top bar with link use to be one line but few weeks ago I did something (I think) and now link to portfolio is below others… this my have something to do with width of the site… do you know how to fix this?
    thanks

    Thread Starter greku69

    (@greku69)

    I just install google chrome, firefox and everything is ok…
    but on safari is not

    Hey everyone,

    And if I want just the sidebar on the right, but only for the article, not for the home page.

    How should I do that, please?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Move sidebar to the right ….’ is closed to new replies.