2 Attachment(s)
Re: How to align Product Descriptopn box
Quote:
Originally Posted by
barco57
would need an example product page URL where the table should be full width but is not after editing with CKeditor to be able to see the on-page code for the table.
Here is a images before and after one is of the dev site the other is the live site that I did the change on
Attachment 20965
https://dev.outdoorking.com/chainsaw...7-35-530054735
Attachment 20966
https://www.outdoorking.com.au/chain...7-35-530054735
Re: How to align Product Descriptopn box
I have to assume the screenshots are from you dev site which is why you are not giving me the url to the page
Re: How to align Product Descriptopn box
Quote:
Originally Posted by
barco57
I have to assume the screenshots are from you dev site which is why you are not giving me the url to the page
This is the url for the live site showing that the description is not going the total width of the page.
https://www.outdoorking.com.au/chain...7-35-530054735
This is another product from the live site that shows the description field going the complete width of the page from the live site.
https://www.outdoorking.com.au/brand...-blade-blr7535
It would appear to be an issue is with the CKEDITOR 5 setting the boxes to the text size or amount going by the second link which shows the top box not going the complete width and the second box goes the complete width.
I don't understand why this is happening and would like to know how to set the table properties so that both go the with of the page. Did not have this issue with CKEDITOR 4.
I am presently adding products to the site at the rate of about 200 to 300 a week.
1 Attachment(s)
Re: How to align Product Descriptopn box
The reason the table is not expanding is because it needs a width.
in your css must make the table with 100%;
#productInfo-productDescription .table {width:100%}
If your still having issue let me know but I am able to make it work on my end by just adding the table width.
Re: How to align Product Descriptopn box
Quote:
Originally Posted by
chadlly2003
The reason the table is not expanding is because it needs a width.
in your css must make the table with 100%;
#productInfo-productDescription .table {width:100%}
If your still having issue let me know but I am able to make it work on my end by just adding the table width.
Which file name is that in the css.
Sorry to be a pain but I don't understand code issues and it takes me some time to get around what I should be changing in regards to files etc.
I really appreciate your help that you are giving me with the issues that I am having because I have reduced a lot of error logs coming up on the live site now.
Re: How to align Product Descriptopn box
This should work
File to edit
path: /includes/templates/bootstrap/css/stylesheet_zczaupost.css
paste this at the bottom of the page
#productInfo-productDescription table {width:100%;}
Re: How to align Product Descriptopn box
Quote:
Originally Posted by
chadlly2003
This should work
File to edit
path: /includes/templates/bootstrap/css/stylesheet_zczaupost.css
paste this at the bottom of the page
#productInfo-productDescription table {width:100%;}
Thank you very much will try it on the dev site later today and get back to you.
If I have two boxes in the same area will it apply to both?
Re: How to align Product Descriptopn box
Quote:
Originally Posted by
chadlly2003
This should work
File to edit
path: /includes/templates/bootstrap/css/stylesheet_zczaupost.css
paste this at the bottom of the page
#productInfo-productDescription table {width:100%;}
Just to let you know I tried it on the dev site and it works perfectly and I will add it to the live site later today.
Both boxes are showing the full length of the page.
Once again you have helped me with issues and it is greatly appreciated.
Re: How to align Product Descriptopn box
Hi chadlly2003,
I have just updated the live site with the files from the dev site and all is working correctly.
Thank you again for your assistance which is greatly appreciate.