About Hellers75
Rank 18800
92 followers Joined March 2017
I currently run my own property business with my husband and am expanding into affiliate marketing for diversification reasons.

Posts

0

Questions

8

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training
asked in
Everything Wordpress
Updated

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:

Theme that allows product display in buttonbox form?

Theme that allows product display in buttonbox form?

asked in
Everything Wordpress
Updated

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:

asked in
Everything Wordpress
Updated

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.

When something is updated it can replace old bug fixes and that is what happen then.

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?

How to get "paste from word" icon up?

asked in
Everything Wordpress
Updated

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.

When something is updated it can replace old bug fixes and that is what happen then.

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.

asked in
Everything Wordpress
Updated

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

In your snippet the {} are missing. Also, 310 seems a strange degree to rotate

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>












Product
Best PricePackagingProduct Info
Free From
Useful InfoCountry 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

Title



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?

Rotating text in an html table?

asked in
Everything Wordpress
Updated

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

In your snippet the {} are missing. Also, 310 seems a strange degree to rotate

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>












Product
Best PricePackagingProduct Info
Free From
Useful InfoCountry 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

Title



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

asked in
Everything Wordpress
Updated

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.

Thank you - will give that a go. (I love this site!!)

See more comments

Head file or uploaidng a file?

Head file or uploaidng a file?

asked in
Everything Wordpress
Updated

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.

Thank you - will give that a go. (I love this site!!)

See more comments

asked in
Everything Wordpress
Updated

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

Hi Helen, do you have a plug-in for creating tables or are you trying to code one?

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!!

You're welcome, Glad I could be of help!

See more comments

How to create tables with links in?

How to create tables with links in?

asked in
Everything Wordpress
Updated

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

Hi Helen, do you have a plug-in for creating tables or are you trying to code one?

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!!

You're welcome, Glad I could be of help!

See more comments

Login
Create Your Free Wealthy Affiliate Account Today!
icon
4-Steps to Success Class
icon
One Profit Ready Website
icon
Market Research & Analysis Tools
icon
Millionaire Mentorship
icon
Core “Business Start Up” Training