Support

Support is part of Event Gallery Extended.

Please get a subscription if you need support. Feel free to use the ticket system or the contact form for reporting defects or pre-sale questions. Make sure you're logged in in order to be able to create a new ticket.

For general information you can also jump to the manual.

Subscribe now!

#2128 No CSS on cart

Posted in ‘Event Gallery Extended’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by avp on Saturday, 14 May 2016 10:33 UTC

avp
 Hi Sven

Have a look at the screen short. Looks like no CSS ?.
Can you advise.

Thanks

Andy

sbluege
Event Gallery the CSS classes which ship with the Joomla Bootstrap version. Seems like your template does not implement them. I this case you need to implement them yourself.

This CSS might help a bit and get you started.

.imagetypeselection .row-fluid {
    width: 100%;
}

.imagetypeselection .row-fluid:before, .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
}

.imagetypeselection .row-fluid:after {
    clear: both;
}

.imagetypeselection .span3 {
    width: 25%;
    display: block;
    min-height: 30px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
}

.imagetypeselection .pull-right {
    float: right;
}
.imagetypeselection .input-append, .input-prepend {
    display: inline-block;
    margin-bottom: 10px;
    vertical-align: middle;
    font-size: 0;
    white-space: nowrap;
}

.imagetypeselection .btn {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #222;
    text-shadow: 0 1px 1px rgba(255,255,255,.75);
    background-color: #616161;
    background-image: -moz-linear-gradient(top,#666,#595959);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#666),to(#595959));
    background-image: -webkit-linear-gradient(top,#666,#595959);
    background-image: -o-linear-gradient(top,#666,#595959);
    background-image: linear-gradient(to bottom,#666,#595959);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff666666', endColorstr='#ff595959', GradientType=0);
    border-color: #595959 #595959 #333;
    border-color: rgba(0,0,0,.1)rgba(0,0,0,.1)rgba(0,0,0,.25);
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    border: 1px solid rgba(0,0,0,0);
    border-bottom-color: rgba(0,0,0,0);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,.05);
}

.imagetypeselection .input-append input {
    position: relative;
	display: inline-block;
    vertical-align: top;
    -webkit-border-radius: 0 4px 4px 0;
    -moz-border-radius: 0 4px 4px 0;
    border-radius: 0 4px 4px 0;
    padding: 0 0;
}

avp
Hi Sven

Work round working.

Andy