gagbdr
Forum Replies Created
-
I’ve managed to find a solution to the problem.
The popup only works if the EFLB widget is also active.Forum: Themes and Templates
In reply to: [Theme: Pinboard] Change footer widget width with CSSI’ve managed to find a solution for this problem. Unfortunately I couldn’t set different width for each column so I had to resize them and give some spacing to keep a symmetric appearance and fill the 1140px available. Just copy the following lines to the style.css file and let the magig happens!
/* Footer widget spacing fix */
#footer-area.widget,
.threecol {
width: 335px;
margin-left: 15px;
margin-right: 15px;
}Forum: Fixing WordPress
In reply to: Change footer widget width with CSSI’ve managed to find a solution for this problem. Unfortunately I couldn’t set different width for each column so I had to resize them and give some spacing to keep a symmetric appearance and fill the 1140px available. Just copy the following lines to the style.css file and let the magig happens!
/* Footer widget spacing fix */
#footer-area.widget,
.threecol {
width: 335px;
margin-left: 15px;
margin-right: 15px;
}Forum: Themes and Templates
In reply to: Editing sidebar footerI’ve managed to find a solution for this problem. Unfortunately I couldn’t set different width for each column so I had to resize them and give some spacing to keep a symmetric appearance and fill the 1140px available. Just copy the following lines to the style.css file and let the magig happens!
/* Footer widget spacing fix */
#footer-area.widget,
.threecol {
width: 335px;
margin-left: 15px;
margin-right: 15px;
}I’ve managed to find a solution for this thanks to Slamlink (http://www.slamlink.net/post-2/) and by writing a width line on the style.css file. The final result is:
/* Remove Social Plugins from the Header */
#social-media-icons {
display: none;
float: none;
margin-top: 0;
}/* The White Margins Surrounding Your Header Image */
#site-title img {
margin: 0;
padding: 0;
float: left;
line-height: 0;
width: 1140px;
}#site-title {
margin: 0;
margin-right: 0;
line-height: 0;
float: left;
}#sidebar-header {
display: none;
}#sidebar-header {
float: none;
width: 0;
height: 0;
margin: 0;
overflow: hidden;
}#header-image {
display: block;
max-width: 100%;
}/* Update fix */
#header input#s {
display: none;
}#site-title {
margin: 0;
}#site-title img {
margin: 0;
}#header #searchform {
display: none;
}After that just upload a picture with a 1140px width and it works like a charm!