dancia
Forum Replies Created
-
It works perfectly. Thank you
Thanks a lot for the help
Thanks so much for the reply. I thought as much but felt maybe there would be some way around this.
I know JavaScript, but not sure where to incorporate it in WordPress to make things work.
For now, I found a temporary solution, where the link opens a separate page where the query string is passed and the form opens up when the page is loaded. It works correctly that way, but I had to figure to way to redirect to the original page when the popup is closed or when the form is submitted.Does Popup maker allow a redirect to a different page when it is closed? If you help me around this, would be great too?
Thanks in advance..
Thank you for the reply Tobias and thank you for such a great plugin.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Remove underline in linkEg:
.tablepress-id-1 .column-3 a { text-decoration: none; text-decoration-color: pink; }Remember to click save after entering this
This will work for table id 1 , column no 3.
This usually worksForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Remove underline in linkYou have to access plugin options under Tablepress plugin and in the textarea provided for Custom CSS, place code as below:
.tablepress-id-#no .column-#no a {
text-decoration: none;
text-decoration-color: pink;
}#no represents the table id no and column no respectively.