Page 1 of 1

A question about html objects and layout grids

Posted: Thu Oct 28, 2021 6:28 pm
by va3ts
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

Re: A question about html objects and layout grids

Posted: Thu Oct 28, 2021 6:57 pm
by crispy68
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:

Code: Select all

<style>
#Html2{font-size:18px;}
</style>
Make sure "Html2" matches the ID of your html box.

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>
Change the name of the font to your liking.

Re: A question about html objects and layout grids

Posted: Thu Oct 28, 2021 7:47 pm
by va3ts
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

Posted: Thu Oct 28, 2021 7:53 pm
by crispy68
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.

Re: A question about html objects and layout grids

Posted: Thu Oct 28, 2021 8:01 pm
by va3ts
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/

Re: A question about html objects and layout grids

Posted: Thu Oct 28, 2021 8:05 pm
by crispy68
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

Posted: Thu Oct 28, 2021 10:49 pm
by va3ts
Thanks, it looks good