-
AuthorPosts
-
May 6, 2016 at 09:53 #6978AnonymousInactive
Hello,
Could you recommend a full-screen theme which is fully compatible with Gmedia Gallery?
I’d like to make a one page gallery website with a featured image. That’s it.
The featured image would be the last one I added to the gallery. I didn’t find how to add a picture to an existing gallery so far but I’m sure it’s possible right?Thank you,
Thatoo
May 6, 2016 at 16:19 #6980AnonymousInactiveHello,
I found one which was not too difficult to modify to get something nice : Agama.
Here is what I modify :*In
/wp-content/themes/agama/style.css
I deleted at the ligne 241 :
max-width: 1100px;
in
.vision-row {
max-width: 1100px;
margin: 0 auto;
padding-top: 50px;
}result :
.vision-row {
margin: 0 auto;
padding-top: 50px;
}*In
/wp-content/themes/agama/style.css
I deleted at the ligne 3414 :
body .site {
padding: 0 20px;
}
in
body {
background-color: #e6e6e6;
}
body .site {
padding: 0 20px;
}
body.custom-background-empty {
background-color: #fff;
}
result
body {
background-color: #e6e6e6;
}
body.custom-background-empty {
background-color: #fff;
}*In
/wp-content/themes/agama/style.css
I deleted at the ligne 3583 :
padding-right: 15px;
padding-left: 15px;
in
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-right: 15px;
padding-left: 15px;
}
result
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
}*In
/wp-content/themes/agama/style.css
I deleted at the ligne 1382 :
padding: 0 24px;
padding: 0 1.714285714rem;
in
.site {
padding: 0 24px;
padding: 0 1.714285714rem;
background-color: #fff;
}result
.site {
background-color: #fff;
} -
AuthorPosts
- The forum ‘Installation’ is closed to new topics and replies.