I am attempting to include a feedburner news feed to our website...the feed script is as follows
http://southgatearc.org/news/2018/octob ... ebsite.htm
I have added it to a new page , with a layout grid and one in the html object alone.
The results can be seen here https://gbarc.ca/testpage.php
You can see the grid won't display the feed but the html object does....maybe I'm not using the correct responsive object...suggestions?
thanks Tom
A question about html objects and layout grids
Forum rules
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/respon ... esign.html
Please read this first before posting any questions! Also check out the example project to get an idea how the RWD concept works.
Responsive Web Design FAQ:
http://wysiwygwebbuilder.com/forum/view ... 10&t=63817
PLEASE READ THE FORUM RULES BEFORE YOU POST:
viewtopic.php?f=12&t=1901
MUST READ:
http://www.wysiwygwebbuilder.com/respon ... esign.html
Please read this first before posting any questions! Also check out the example project to get an idea how the RWD concept works.
Responsive Web Design FAQ:
http://wysiwygwebbuilder.com/forum/view ... 10&t=63817
Re: A question about html objects and layout grids
That's because the font size is set to zero in a layout grid so as to not add any height to the grid.
You will need to add some CSS like so to make it work:
Make sure "Html2" matches the ID of your html box.
If you want to change the font also, then add it like such:
Change the name of the font to your liking.
You will need to add some CSS like so to make it work:
Code: Select all
<style>
#Html2{font-size:18px;}
</style>
If you want to change the font also, then add it like such:
Code: Select all
<style>
#Html2{font-size:18px;font-family:arial;}
</style>
Re: A question about html objects and layout grids
Thanks for the suggestion, but I may need a little more detail, like where to put the css and how to get the layout grid to use it..thanks
Re: A question about html objects and layout grids
You can do 1 of 2 things:
1. insert an html object onto the page, Type = place it between the <head> tags and copy and paste my code.
2. Click on Page --> Page HTML and click the 'between <head> tags' and paste my code.
More info here in the help: https://www.wysiwygwebbuilder.com/add_html.html
There is nothing you need to do with the grid at this time.
1. insert an html object onto the page, Type = place it between the <head> tags and copy and paste my code.
2. Click on Page --> Page HTML and click the 'between <head> tags' and paste my code.
More info here in the help: https://www.wysiwygwebbuilder.com/add_html.html
There is nothing you need to do with the grid at this time.
Re: A question about html objects and layout grids
The end result should be inclusion into my homepage, and therefore why I'm looking for a responsive solution. If I simply use an html object, how will this co-exist with the page elements there now...have a look..thanks
https://gbarc.ca/
https://gbarc.ca/
Re: A question about html objects and layout grids
It will look like it does in your demo. The html object is a way of injecting the feedburner code into the page. You place it on the page like you would any other object.
Re: A question about html objects and layout grids
Thanks, it looks good