Hi
I want to use flex box 5 inside a 2/3 wide column. It looks good on Firefox and Chrome. On Internet Explore, the image, no matter which size I select, is extra large. On the same page, in the 1/3 wide column, I have widgets, with images. The images there are extra large too. I do not have such problems with the non-flex blocks.
I cannot change the background color of the Search button.
I cannot remove the Read more button, or change its color to blue.
I cannot change the blog title. I mean, it changes when I go into the customize area and type it in, but the change is not reflected on the blog itself.
On Internet Explorer only, the Sign in link pops up at the top of pages. I do not want it seen.
One of the pages I have problems with on Internet Explorer is http://www.homeloanmine.com/trending.
Hi,
Indeed there is an issue on Internet explorer + Flex Blocks, the IE do not recognize the flex css parameter.
Please try this code:
[class*="ie"] .td-module-container {
display: block;
}
[class*="ie"] .td-image-container {
height: auto;
flex: initial;
}
The code must be inserted here: https://www.screencast.com/t/J1Nxw5s5
The background color from button can be change from style tab -> https://i.imgur.com/7Atxne8.png
To remove the read more button you need to go in layout -> https://i.imgur.com/yDBXZft.png
Let me know the results!
Hi,
Unfortunately I do not quiet understand, do you want to set h1 on page title or you want to remove the page title?
To set the h1 tag on the elements you cant please check this topic -> https://forum.tagdiv.com/topic/h1-tag-for-logo/
If you want to remove the page title use other page template then Page Builder + Page Title -> https://forum.tagdiv.com/page-templates-2/
Thank you!
Hi, Călin,
I want to remove the page title.
Another question, how do I change the background for the category in Block 11? Also, in Block 11, how do I hide the author and the date?
On Chrome, on mobile phone, block 11 looks like it has 3 columns: image, empty, text. How do I make it look like 2 columns? Here’s the page I’m looking at: http://www.homeloanmine.com. I would like it to look like it does on desktops.
Thanks,
Dusan
-
This reply was modified 6 years by
dabk.
Hi,
To remove the page title use the page template default -> https://forum.tagdiv.com/page-templates-2/
Unfortunately the background category from blocks can be change only with custom css, only on flex blocks can be change using tagDiv Composer.
example of css -> https://i.imgur.com/yXxD1P3.png
.td_block_11 .td-post-category{
background-color: gray;
}
The code need to be set in theme panel> custom code> custom css.
Also we recommend to use a flex bloc -> https://forum.tagdiv.com/flex-block-settings-guide/ this can be customize how you want.
To adjust the mobile view please try this custom css
-> https://i.imgur.com/X7vnWru.png
.td_block_11.td-column-1 .td_module_10 .item-details {
padding-left: 0;
}
the code need to be set in theme panel> custom code> advance> phone
Thank you!