Is anyone able to help me as to why this is happening?
The blog I need help with is dalylane.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Is anyone able to help me as to why this is happening?
The blog I need help with is dalylane.wordpress.com.
In your case Update > 1 of my post applies. You have increased the sidebar width without also increasing the total width of the theme or decreasing the width of the main column.
This should be in the CSS forum.
Are you able to change it for me at all justpi? please :)
No I can't, because I'm not WP staff. You can change it yourself by removing this from the CSS editor:
#sidebar {
float: right;
padding: 15px 10px 15px 5px;
width: 290px;
}
this is all thats showing up...
/** BEGIN sidebar **/
#sidebar {
width: 290px;
float: right;
padding-left: 5px;
padding-top: 15px;
padding-bottom: 15px;
padding-right: 10px;
}
#sidebar h3 {
padding-top: -5px;
padding-left: 5px;
margin-bottom: 10px;
font-family: 'Josefin Slab', 'century gothic', serif;
font-size: 2em;
font-weight: normal;
color: #4c4c4c;
letter-spacing: 1px;
padding-top: 3px;
}
#sidebar ul {
padding: 0 10px;
list-style-type: none;
padding-bottom: 10px;
}
#sidebar ul li {
border-bottom: 0 dotted #DDDDDD;
padding: 4px 0;
}
#sidebar ul li a {
color: #4c4c4c;
}
#sidebar ul li a:hover {
color: #e64cc8;
text-decoration: none;
}
#sidebar .tagsleft {
float: left;
margin: 5px 15px 5px 0;
font: 'century gothic', sans-serif;
font-size: 1em;
}
/** END sidebar **/
The code I pasted is the same as the first part of the one you pasted. Replace this:
#sidebar {
width: 290px;
float: right;
padding-left: 5px;
padding-top: 15px;
padding-bottom: 15px;
padding-right: 10px;
}
with this:
#sidebar {
padding: 15px 10px 15px 5px;
}
This topic has been closed to new replies.