Hi all, I've hit another wall. I've been trying to build out my product pages using tables but I don't think this is going to work for me. My site is going to be a shopping p
Theme that allows product display in buttonbox form?
Hi all, I've hit another wall. I've been trying to build out my product pages using tables but I don't think this is going to work for me. My site is going to be a shopping p
Most Themes I've seen provide the large area for you to convert to your product matrix. There are plugins that will create that table design you desire. Perhaps you want to do something like this: HTML Tables and Amazon Products
Hi, In my Wordpress I only have "paste as text" as an icon. the training talks about "paste from Word" but I don't have that showing. I have both lines showing in the toolb
Paste into the Text tab instead of the Visual tab, that usually fixes the weird coding that Word produces.
The paste from word option was removed from WP in version 3.9.
They have implemented tinymce which means when you copy it "should" handle the Word rubbish automatically.
How to get "paste from word" icon up?
Hi, In my Wordpress I only have "paste as text" as an icon. the training talks about "paste from Word" but I don't have that showing. I have both lines showing in the toolb
Paste into the Text tab instead of the Visual tab, that usually fixes the weird coding that Word produces.
The paste from word option was removed from WP in version 3.9.
They have implemented tinymce which means when you copy it "should" handle the Word rubbish automatically.
Hi all, I need to rotate column headings in order to get the right layout and my html skills are not up to it. Irritatingly, I got it working last night but obviously didn't h
Hi, thank you. I've now added the {} and it's working - except it's angling the entire page (including the background image). I'm assuming it's a simple sequencing thing as I made it work yesterday but I just can't get this right.
In fact, it's not showing it as I pasted it. this is what I actually have...
<style>
div
{
width:130px;
height:50px;
-ms-transform:rotate(310deg); /* IE 9 */
-moz-transform:rotate(310deg); /* Firefox */
-webkit-transform:rotate(310deg); /* Safari and Chrome */
-o-transform:rotate(310deg); /* Opera */
}
</style>Best Price Packaging Product Info Useful Info Country of Origin
thinking about this the best way might be to set up a class in your CSS file:
.rotate {
-moz-transform: rotate(-90.0deg);
/* Opera 10.5 */
-o-transform: rotate(-90.0deg);
/* Saf3.1+, Chrome */
-webkit-transform: rotate(-90.0deg);
/* IE6,IE7 */
}
Then in your HTML
May need a bit of tweaking in the CSS class but that is the basis
Thank you so much - I have never looked at the CSS file but then I'd not touched HTML until yesterday so I'll give it a go. Dredging back to coding lessons from 20 years ago!
Ok the real challenge in your code is the div doesn't have a name so when you put it in the table it doesn't know that you want the rotate div to be used.
ok, adding a name worked - but I've just realized that I've lost the tablesorter functionality and i'm not sure which change did that. Is there a restriction on using multiple classes?
See more comments
Rotating text in an html table?
Hi all, I need to rotate column headings in order to get the right layout and my html skills are not up to it. Irritatingly, I got it working last night but obviously didn't h
Hi, thank you. I've now added the {} and it's working - except it's angling the entire page (including the background image). I'm assuming it's a simple sequencing thing as I made it work yesterday but I just can't get this right.
In fact, it's not showing it as I pasted it. this is what I actually have...
<style>
div
{
width:130px;
height:50px;
-ms-transform:rotate(310deg); /* IE 9 */
-moz-transform:rotate(310deg); /* Firefox */
-webkit-transform:rotate(310deg); /* Safari and Chrome */
-o-transform:rotate(310deg); /* Opera */
}
</style>Best Price Packaging Product Info Useful Info Country of Origin
thinking about this the best way might be to set up a class in your CSS file:
.rotate {
-moz-transform: rotate(-90.0deg);
/* Opera 10.5 */
-o-transform: rotate(-90.0deg);
/* Saf3.1+, Chrome */
-webkit-transform: rotate(-90.0deg);
/* IE6,IE7 */
}
Then in your HTML
May need a bit of tweaking in the CSS class but that is the basis
Thank you so much - I have never looked at the CSS file but then I'd not touched HTML until yesterday so I'll give it a go. Dredging back to coding lessons from 20 years ago!
Ok the real challenge in your code is the div doesn't have a name so when you put it in the table it doesn't know that you want the rotate div to be used.
ok, adding a name worked - but I've just realized that I've lost the tablesorter functionality and i'm not sure which change did that. Is there a restriction on using multiple classes?
See more comments
Hi, I'm joining the Zanox affiliate network but I need to verify my URL with them.. They give two ways to do it. 1) paste a line into the "head file" and 2) upload a file they
Adding the line to the header is really simple (when you know how of course):
Step 1: Log into WordPress and select Appearance -> Editor. ...
Step 2: On the right hand side you will see a list of all the files in your template. Look for header.php
Step 3: Click on the name header.php
Before proceeding - highlight all the text in the header.php file and copy it to notepad (or equivalent) and save it to your computer. You then have a copy you can go back to if something goes wrong.
Step 4: Copy/Paste the line you have been given to the bottom of all the other code that is in there
Step 5: Click Update File
Done
To upload a file you would need an FTP client and then use the ftp credentials under Details in SiteRubix.
So, unless you are used to FTP the header change is easier.
See more comments
Head file or uploaidng a file?
Hi, I'm joining the Zanox affiliate network but I need to verify my URL with them.. They give two ways to do it. 1) paste a line into the "head file" and 2) upload a file they
Adding the line to the header is really simple (when you know how of course):
Step 1: Log into WordPress and select Appearance -> Editor. ...
Step 2: On the right hand side you will see a list of all the files in your template. Look for header.php
Step 3: Click on the name header.php
Before proceeding - highlight all the text in the header.php file and copy it to notepad (or equivalent) and save it to your computer. You then have a copy you can go back to if something goes wrong.
Step 4: Copy/Paste the line you have been given to the bottom of all the other code that is in there
Step 5: Click Update File
Done
To upload a file you would need an FTP client and then use the ftp credentials under Details in SiteRubix.
So, unless you are used to FTP the header change is easier.
See more comments
Hi all,
I asked about tables before and people responded but now I can't find my way back to the answers! I need to create tables for product comparisons and include th
I definitely wouldn't be able to code one so i'm looking for a decent plug in. I installed Table Press which looked really good for about 5 minutes but then it stopped working completely and half crashed my site so I had to take that out.
I've used this with success in the past - https://wordpress.org/plugins/mce-table-buttons/
Maybe give that one a go? It adds a TABLES option in the toolbar
Thank you so much - not being able to add a simple table had been really getting to me. This is great!!
See more comments
How to create tables with links in?
Hi all,
I asked about tables before and people responded but now I can't find my way back to the answers! I need to create tables for product comparisons and include th
I definitely wouldn't be able to code one so i'm looking for a decent plug in. I installed Table Press which looked really good for about 5 minutes but then it stopped working completely and half crashed my site so I had to take that out.
I've used this with success in the past - https://wordpress.org/plugins/mce-table-buttons/
Maybe give that one a go? It adds a TABLES option in the toolbar
Thank you so much - not being able to add a simple table had been really getting to me. This is great!!
See more comments
Most Themes I've seen provide the large area for you to convert to your product matrix. There are plugins that will create that table design you desire. Perhaps you want to do something like this: HTML Tables and Amazon Products