Wiki

Clone wiki

q2a-social-network-profiles-public / Theme-hacks

SNP - Social Network Profiles

Home

Table of contents:

Theme hacks

The following CSS theme hacks have to be added to the end of the pupi_snp_styles.css file. They are exclusive. This means if you have added the modifications for the Classic theme and then you start using the Snow theme then you will have to remove the Classic theme changes and add the Snow ones.

If you have an open source theme published in the Q2A forums, with at least 10 upvotes, feel free to contact me as I might give it a try and maybe add whatever hack is needed. On the other hand, if your theme does not fulfill these requirements and you don't have enough technical skills to handle this on your own, you can hire me at an hourly rate to see what can be done to improve the look and feel.

Candy theme (released with Q2A v1.7.0)

CSS changes to apply:

/* Hacks for Candy theme released with Q2A 1.7.0 */

.pupi-snp-popup .dd-container {
    font-size: 100%;
}

.pupi-snp-popup .dd-option-text,
.pupi-snp-popup .dd-selected-text {
    line-height: 1.75;
}

Classic theme (released with Q2A v1.7.0)

CSS changes to apply:

/* Hacks for the Classic theme released with Q2A 1.7.0 */

.pupi-snp-popup .dd-container {
    font-size: 100%;
}

.pupi-snp-popup .dd-option-text,
.pupi-snp-popup .dd-selected-text {
    line-height: 1.75;
}

Cleanstrap theme (version taken from GitHub repository on 2015-07-26)

CSS changes to apply:

/* Hacks for CleanStrap them v2.5.2 */

.pupi-snp-popup .dd-container {
    font-size: 85%;
}

.pupi-snp-popup .dd-container a:hover {
    text-decoration: inherit;
    color: #555;
}

.pupi-snp-popup label.dd-option-text,
.pupi-snp-popup label.dd-selected-text {
    margin-bottom: 0;
}

Donut theme (version taken from GitHub repository on 2015-07-26)

CSS changes to apply:

/* Hacks for Donut theme v1.1 */

.pupi-snp-popup .dd-container {
    font-size: 90%;
}

.pupi-snp-popup label.dd-option-text,
.pupi-snp-popup label.dd-selected-text {
    margin-bottom: 0;
    line-height: 1.75;
}

.pupi-snp-popup img {
    padding: 0;
    line-height: inherit;
    background-color: inherit;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

Snow theme (released with Q2A v1.7.0)

CSS changes to apply:

/* Hacks for Snow theme released with Q2A 1.7.0 */

.classysocial {
    margin: 20px 0 20px 40px;
}

.pupi-snp-popup h2 {
    background: none;
    border: none;
}

.pupi-snp-delete-link {
    padding-left: 1em;
}

.pupi-snp-popup label.dd-option-text,
.pupi-snp-popup label.dd-selected-text {
    line-height: 1.75;
}

SnowFlat theme (released with Q2A v1.7.0)

CSS changes to apply:

/* Hacks for SnowFlat theme released with Q2A 1.7.0 */

.pupi-snp-popup .pupi-snp-username-input {
    margin: 0;
}

.classysocial {
    margin: 20px 0 20px 40px;
}

Updated