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.
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!
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 ?
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
|
|
|
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
Please login or Register to submit your answer
replied 11 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
replied 11 years ago
edit. trying to make it permanent. so that everytime i update it will be a full width post.