Forum Replies Created

Viewing 15 replies - 16 through 30 (of 44 total)
  • Thread Starter Rainbow

    (@adi-admin)

    Okay. I will mark the status as resolved as this issue will be taken care of, as to be carried through to the update.

    Many thanks.

    Thread Starter Rainbow

    (@adi-admin)

    okay cool, yeah it worked:

    having <p></p> between paragraphs actually makes spaces where as spacebar, <br> and &nbsp; does not.

    Many thanks!!

    Resolved!

    Thread Starter Rainbow

    (@adi-admin)

    WOW!

    What a fix!

    Many thanks @wdsupport!

    Thread Starter Rainbow

    (@adi-admin)

    .site-content .site-navigation {
    display:inline-block;
    width: 100% !important;
    }
    .site-content .nav-previous {
    width:auto !important;
    }
    .site-content .nav-next {
    width:auto !important;
    }

    This fixed both of the issues.

    I’m actually having this issue as a responsive issue on devices. I will create a brand new post and describe the issue.

    Thread Starter Rainbow

    (@adi-admin)

    I’m sorry I did that, I should of been more patient in what was more of a desperate situation.

    Actually, we’ve fixed the issues. It was all down to database bugs linked to the plugin. We found the solution NOT to drop tables and start again, but to delete the plugin entirely and start all over again. – sadly, that meant all the listings, categories and settings…

    However, you guys kept in touch with your support all throughout via email, and I respect that. I genuinely think this is a great plugin, and probably soon onto buying another addon after we get the translation sorted with regions.

    Again, many thanks for your help and support.

    Thread Starter Rainbow

    (@adi-admin)

    ok, I’ve managed, with much stress, to rid it from the database. and start over.

    I am now building up the regions, again.

    Thread Starter Rainbow

    (@adi-admin)

    Even after clearing out the backend database, continents that I delete from the list are gone forever with no light of getting back, even after deleting and reinstalling the plugin, cache, and all other settings of enabling everything – This plugin has became pretty useless.

    How do I completely restart again where I get everything back.

    We’re not talking about enabling from disabling, we’re talking about entries that I simply deleted out of my enabled list – BUT DELETED FOREVER.

    Please help.

    Thread Starter Rainbow

    (@adi-admin)

    Many thanks!

    Key has now been accepted – thank you for getting back to me via personal email.

    Thread Starter Rainbow

    (@adi-admin)

    Okay, I’ve fixed it! I simply created a new calendar and moved all the events across (in the desired author’s name). – Then deleted the old calendar.

    Resolved.

    Many thanks

    Thread Starter Rainbow

    (@adi-admin)

    Tobias,

    Apologies for my delay in responding.

    Actually I got it working now. let me tell you how I did it, rest assured it isn’t the best way :/

    CSS: – NOTE that this hides my borders into a background. I have over 70 tables that need their own id (meaning the styling you below is that times 70+…)

    .tablepress-id-22 {
    border: none !important;
    }

    .tablepress-id-22 .row-1 .column-1 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-1 .column-2 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-1 .column-3 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-1 .column-4 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px#F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-2 .column-1 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-2 .column-2 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-2 .column-3 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    .tablepress-id-22 .row-2 .column-4 {
    border-bottom: 1px #F5F5F5;
    border-top: 1px #F5F5F5;
    border-left: 1px #F5F5F5;
    border-right: 1px #F5F5F5;
    }

    So, the silly question is. What can I do to stop borders actually existing? I will run tests on my messabout side with your advice. Note that I have tried much of my research attempts but i’ll rerun tests on any advice you can give that ‘should be removing borders on ID classes in my CSS.

    Many thanks for your time, Tobias.

    Adi

    Thread Starter Rainbow

    (@adi-admin)

    Hi there,

    I’ve found the way of overcoming this problem, which many others in the past have had in similar shapes or forms.

    Each cell has its own border as well as the overall one. Basic knowledge of tables, I know. but i couldn’t collapse them with the CSS nor change the color of each individual cell which would need to reflect the row / column colors.

    After the entire last weekend, I managed it in the plugin CSS, like this:

    .tablepress-id-10 .row-6 {
    	border: 1px solid #8c8c8c;
    	border-left-color: #FFFFFF;
    	border-right-color: #FFFFFF;
    }
    
    .tablepress-id-10 .row-6 .column-1 {
    	background-color: #EBEBEB;
    }
    
    .tablepress-id-10 .row-6 .column-2 {
    	background-color: #DDDDDD;
    }
    
    .tablepress-id-10 .row-6 .column-3 {
    	background-color: #DDDDDD;
    }

    This was the only way after much experimentation to how to sort out the borders (white if wanted them (or that outside border) to totally disappear), once you’ve dealt with the border radius.

    Thread Starter Rainbow

    (@adi-admin)

    Thread Starter Rainbow

    (@adi-admin)

    I hav tried:, for example:

    .tablepress-id-10 .row-1 .column-3 {
    /* Permalink – use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c9de96+0,8ab66b+44,398235+100;Green+3D+%233 */
    background-color: #7DB4E8;
    -webkit-border-top-right-radius: 10px;
    -moz-border-top-right-radius: 10px;
    -ms-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    border-right: none;
    border-top: none;
    }

    I have even tried to turn them white, camouflaging it with the white background. All this doesn’t seem to work.

    Any ideas?

    Thread Starter Rainbow

    (@adi-admin)

    Fixed it.

    It was a matter of changing the last child to last child:

    .tablepress-id-10 thead th:first-child {
    	border-top-left-radius: 10px;
    }
    
    .tablepress-id-10 thead th:first-child {
    	border-top-right-radius: 10px;
    }
    
    .tablepress-id-10 tbody tr:last-child td:first-child {
    	border-bottom-left-radius: 10px;
    }
    
    .tablepress-id-10 tbody tr:last-child td:last-child
    
     {
    	border-bottom-right-radius: 10px;
    }
    • This reply was modified 9 years, 2 months ago by Rainbow.
Viewing 15 replies - 16 through 30 (of 44 total)