dustyhawk
asked 10 years ago

 

 
Currently my permalink looks like the one above. how do i edit so that it looks like the one at the bottom
 

 
 
also the sidebar, i’m trying to push it to the bottom.

dustyhawk
replied 10 years ago

Edit. 2nd pic was from an old wallpress version which was installed onto my sandbox.

while the 1st pic is the current wallpress which i downloaded recently

dustyhawk
replied 10 years ago

edit. trying to make it permanent. so that everytime i update it will be a full width post.

2 Answers
Wilfred
answered 10 years ago

Hi dustyhawk.

To reslove this issue please add the following code to Header Code in Dashboard > Customize > Custom code > Header code: 

 <style>
body.single-post #content {
max-width: 100%
}
body.single-post #sidebar-secondary,
body.single-post #sidebar-secondary .item {
width: 100%;
}
</style>

Hope this helps!

dustyhawk
replied 10 years ago

it does help though i’m trying to get the widgets to appear as

| | | (each section at about 285px)

and not

_
_
_

. which part of the ” body.single-post #sidebar-secondary, ” should i change ?

dustyhawk
replied 10 years ago

well i tried changing the

body.single-post #sidebar-secondary .item {
width: 100%;

to

body.single-post #sidebar-secondary .item {
width: 285px;

and what i got was the sidebar becoming

|
|
|

dustyhawk
answered 10 years ago

whoops.
found out that i just need to have this only
 

<style>
body.single-post #content {
max-width: 100%
}
</style>

To get it to what i need
Powered by DW Question & Answer Pro