Video: multiple questions

Posted in: Newspaper
Post count: 49

Hey guys,

Could I get some assistance on the following please:

Part 1: https://drive.google.com/open?id=0BzKfDhkGKQp7VW1wQlVOUnlQR0k

Part 2: https://drive.google.com/open?id=0BzKfDhkGKQp7NnZELXp0cGxySXc

Thanks in advance

  • This topic was modified 10 years by zingolo.
Post count: 22421

Hello,

1) Unfortunately our theme does not allow such a secondary menu spot on the mobile menu. It will have to be made custom but it will be no easy task unfortunately as there is no such spot for a secondary menu and it has to be created from scratch. We suggest hiring a developer to help out on this task.
2) The space can be adjusted with css by using the browser inspector and removing any extra padding. The space comes from the author name and date. I will need access to your site so I can provide the proper code though.
3) The comments color can also be changed with css as there is no setting for them in the theme panel. You can use this code:

.td-module-comments a{
background-color:grey!important;
}

4) I have tested the zoom-out issue on our end but we do not get a zoom-out effect. Please also test our demo at demo.tagdiv.com/newspaper to see if you still gfet a zoiom on our demo. Try to write a comment and see. I tested on android and ios but there was no zoom. it could be a local issue, maybe due to plugins.
5) Again I weill need access to your site so I can figure out which module is being used there and check it;s code to see if there are any hidden options available to fill the space. For some the category tag or author/date was hidden with css as a design choice.
6) Again, I will need access to inspect the different module. The old access you provided for us via email does not work anymore so please create an account that is working so we can login on your site and send us the login info via email at contact@tagdiv.com Alswo include a link to this topic.
7) The code for each section of the pull-down filter can be found here: http://screencast.com/t/xhWykDVv
8) As for the custom title you set to your contact form, it will grab the theme accent color. If you want to change it you need to change the code a bit. Try this one:

<div class="block-title mycustomclass"><span>Contact Form</span></div>

and then use this css to style it:

.mycustomclass span{
background-color:Red!important;
}
.mycustomclass{
border-color:red!important;
}

Thank you!

Post count: 49

Thanks for the reply, the old username and password should be working again. thanks In advance

Post count: 22421

Hi,

2) This css should remove a bit of spacing but keep in mind that css is very specific and it will only apply to the homepage on mobile. If you require other adjustments, you will have to use the browser inspector to figure out how to remove the spacing with css as this is very personal and we cannot provide a general code that can remove the white space everywhere:
@media (max-width: 767px){
.block-title{
margin-bottom:10px!important;
}
.td_block_1 .td_module_4{
padding-bottom: 5px!important;
}
.td_block_5 .td-block-row:last-child .td_module_3{
padding-bottom: 5px;
}}

5)You can activate the author name and the comments count for that particular block by removing the 2 // lines from here: http://screencast.com/t/WGirLBFwo Unfortuantely that’s about it. There is no other content that can fit in there as there has to be enough space for longer post titles.

6) The problem with the different module under the recipes category is because you only have 4 posts to show in that category .Every category is made out of 2 sections. A big grid and a module. You have a big grid with 3 posts and a module with 1 post. If you add more posts it will populate the module section with more posts. These can be selected from the per category settings: http://screencast.com/t/xEp1tg1Kw

I hope this helps.
Thank you!

Post count: 49

Morning,

Thanks for the continuous support.

I have another video for you:
https://drive.google.com/open?id=0BzKfDhkGKQp7VnZEQ0ZOTFFTa28

Thanks in advance

Post count: 22421

Hi,

1) A module is the base element in our theme. Every block is simply a container of 1 or more modules. In this section of the theme paenl you can see exactly what module is used on what block: http://screencast.com/t/uHbbrmqWCXr
If you want to be more specific about it, you can find out faster by using the browser inspector. For example on a block 1, the small thumbnails: http://screencast.com/t/bkbqegiM2. The small module is a module 6. It’s module 6 you have to edit. The screenshot had module 5 highlighted (my bad) but it is module 6 being edited if you look here: http://screencast.com/t/MWULaIJuoTW. Sorry for the confusion.

2) The black header color shows up when your site gets a bit heavier on the loading speed. Css works in cascades and if you use for example css optomization tools that move the css render block to the footer, then you will be able to see each stept of the css re-write on the first load. The solution for this will be to change the css directly in style.css so there will not be any re-writes done to the file. This is the default css behavior and happens on every theme. An easy way to do it without too much searching is to simply access the page source and copy all of the rendered css directly in style./css at the bottom of the file: http://screencast.com/t/Oym8Cldak (it’s a big list. Copy everything between the ‘style’ tags)

3) The font is not bold in the left big thumb, but rather the font increased. If I increase the font for the small thumbs as well, it will also look bold. You can target them with css like so:
.td_module_6 .entry-title{
font-weight: 600!important;
}

4) Well the widgets are not the same height so you will need a bit of css customization to adjust the different margins to the containers to match the center widget. But adding more content to these sections will cause them to position differently again.
For the current layout you can use this code to make them align :
.widget_display_topics{
margin-bottom: -22px!important;
}
.widget_display_forums{
margin-bottom: -36px!important;
}

However I cannot guarantee this solution can be a viable one if the content of these widgets changes. All widgets are dynamic so longer titles will make them ‘fall’ below again

5) You can align the instagram text by adding this css code:
@media(max-width: 767px){
.td-footer-instagram-container .td-footer-instagram-title .td-footer-instagram-user-link{
display:initial!important;
}}

6)You can make the search text bigger by using this code:
.td-search-wrap-mob .td-search-input span{
font-size: 30px!important;
}

7) If you want to redirect the login to the bbpress login ,you can use simple 301 redirects and simply redirect the default login to the bbpress forums, but i;m not sure exactly how the login will work then. So maybe you will want a redirect after the login is made. So a user logs in ad is imediatly redirected to the forums maybe, Thait is doen with plugins as our theme dopes not have any such options.

8) That is because there were a few css changes and the code you had in your custom css needed to be more specific. Such things happen afet an update as css gets changed all the time. That is why the custom css code you apply needs to be very specific or some other more specific code we may add in a new update could overwrite it.

9)The big grid can be set as a full box if you remove the 2 pixels margin like so :
@media (max-width: 767px){
.td_block_big_grid_12 .td-big-grid-wrapper .td-big-grid-post:last-child .td-module-thumb {
margin-left: 0px!important;
}}

10) I’m not sure the code you entered is valid or not, you will have to get a proper ad code from the ad provider and then wrap it into these div elements like this topic suggests: https://forum.tagdiv.com/using-other-ads-non-adsense-ads/

Thank you!

Viewing 6 posts - 1 through 6 (of 6 total)
The forum ‘Newspaper’ is closed to new topics and replies.