- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsDefault Block Settings Guide
- TutorialsHow to use custom fonts
Hi,
Unfortunately the theme doesn’t have a feature like that.
You can try though to add a widgetised sidebar element using VC page builder, select your sidebar and add a custom class to it, like this: http://screencast.com/t/8cM5cB14mG and then use this css to make it sticky: http://screencast.com/t/lByPP44eDGlK
.sticky_sidebar {
position: fixed;
}
You can also try to find a plugin which dose that.
Hope this helps!
Thanks
Hi,
This issue comes from the .alignleft css class which targets the images which have that class assigned and at 500px maximum width screens sets the width and also the maximum width to 100%
The best solution would be to overwrite that and having a new class added just to the numbers images but I can see an easy way to do that so a solution for this and you will need custom work for this.
The best solution would be to remove the css set for the align right and left images at 500px width from the style.css file, like this: http://screencast.com/t/STTFMQlM
Another solution would be to align to the left only the number images an for the other post images use align right option or center or none as the .alignleft class is added just to the images set to align to the left and use the css I gave in the previous post which will affect only the images aligned to the left which means only the numbers images.
Hope this helps!
Thanks
Hi,
Sorry about that, please remove the css I have gave you above and use just this: http://screencast.com/t/T4QYotDDwOl
Should solve this issue, please let me know if it doesn’t and send me an example so I can inspect it.
Use it like this:
.single_template_5 .td-post-content header {
margin-bottom: 10px;
}
Thanks
Hi,
I’m not sure how you can easily get the shortcodes out from the description as the content of your events is represented by those shortcodes used to build the event page, so my guess is that you would need something like a regular expression and a filter to strip all the shortcodes from the excerpt leaving the content, but in your case I can’t see any content so I think the best way would be not to use a description at all and find a way to remove it, removing the shotcodes also.
You can search trough plugin’s settings for an option to not show the description or you could use css to hide the description or you can also edit the plugins files and remove the description code.
You can use css to hide it like this: http://screencast.com/t/l9229anbb
.tribe-events-list-event-description {
display: none;
}
Hope this helps!
Thanks
-
This reply was modified 11 years by
Lucian.
Hi,
Please use this custom css and add it in theme panel > custom css field: http://screencast.com/t/3mJaEhiTWsra
@media (max-width: 767px){
#td-top-search {
top: 2px;
}
#td-top-mobile-toggle {
display: block;
}
}
Thanks
Hi Lucian,
I have tried to create a image css class with your code to apply it to EACH image in the image options “image css class), as an alternative option. I don’t really want this as a fix as there is over 200 instances of this button across the site, but I’m not sure if I’m doing it wrong or is there another way. I need the number images to stay fixed and everything else to get handled by the device.
The problem seems to becoming from the alignment to the left, as when I apply no alignment the image works fine, but I can’t wrap the text.
Thanks
Still not working despite using the CSS: http://take.ms/NTP4n
The first line of the text is misplaced.
Hi,
This fixes the small number image problems but it then means that other images I place in the content area get reduced on mobile, when I don’t want them to. Ie advertisements that should fill a mobile screen width (i.e. 320px, get reduced to really small).
I need to use image alignment so the desktop version looks full of content. But it looks like the css fixes just messes with these additional images.
example:
<…http://www.vitalstrengthblog.com.au/webdev/best-shoulder-workout/…>
Thanks
I don’t think you can edit the jetpack comments elements as they load from the jetpack website/cloud. It loads in an iframe and isn’t actually “on” your site. Supposedly there is a custom CSS editor built in to Jetpack, which allows you to change colors or whatever, but not sure you can edit textual elements. Likely good to try the Jetpack support forum as it’s not part of the theme.
http://jetpack.me/support/comments/
You can also change the “Leave a Reply” heading and the color scheme of the Jetpack Comments form under the Settings → Discussion menu.
Hi,
Use:
body {
background-color: red !important;
}
..in theme panel > custom css.
Thanks
Hi,
You can do something like this using css: http://screencast.com/t/Qv2OPSPI8
Unfortunately you need custom work to achieve something similar with the block headings which have a different html structure.
Here is the css I have used in the screenshot:
.wpb_tabs .wpb_tabs_heading {
border-bottom: 2px solid #000000;
margin: 0px 0px 26px 0px;
font-family: Roboto;
font-size: 15px;
line-height: 15px;
font-weight: bold;
padding-bottom: 4px;
padding-left: 10px;
}
Hope this helps!
Thanks
Hi,
Please use the css like this: http://screencast.com/t/6tMtVC0xSi
@media (max-width: 500px) {
.post .td-post-text-content .alignleft {
float: left !important;
margin-right: 23px !important;
margin-top: 6px !important;
margin-bottom: 6px !important;
max-width: 50px !important;
width: auto !important;
}
}
While checking your site also noticed that your background image isn’t showing: http://screencast.com/t/zbNiN33JH7Zz and noticed that this happens only on pages, on post pages looks fine. If you want you can use this css to add the background on other pages also: http://screencast.com/t/37IlLC7JR
.page {
background-color: #ffffff;
background-image: url('http://www.vitalstrengthblog.com.au/webdev/wp-content/uploads/2014/10/Ripped-Background-Hi-Res-C2.jpg');
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
}
Thanks
Hi,
You can use the code for the module 8 file that I gave you and use css to hide the others categories, leaving just the first, like this:
ex: http://screencast.com/t/MZ6RVToy
result: http://screencast.com/t/q53qS8jpvB
Use this css:
.td_mod8 .meta-info .td-category li:nth-child(2) a, .td_mod8 .meta-info .td-category li:nth-child(3) a, .td_mod8 .meta-info .td-category li:nth-child(4) a, .td_mod8 .meta-info .td-category li:nth-child(5) a, .td_mod8 .meta-info .td-category li:nth-child(6) a, .td_mod8 .meta-info .td-category li:nth-child(7) a {
display: none;
}
Thanks
-
This reply was modified 11 years by
Lucian.
How can i change the main ‘white’ background color from white to whatever color i want via CSS instead of the control panel.
Hi,
Yes, you can target and style tabs via css, here is an example: http://screencast.com/t/esZ2MfwEc
.wpb_tabs .ui-tabs-nav .ui-tabs-active a {
color: white;
background-color: red !important;
}
.ui-tabs-nav {
border-bottom: 2px solid red !important;
}
.wpb_tabs .ui-tabs-nav a, .ui-tabs-nav .ui-tabs-active a {
color: blue;
}
Change the colors as you like.
Thanks
It doesn’t exist yet — insert these lines in the theme panel’s custom CSS section and it overrides the relevant styling from the theme files.
1) clear your cache; if using local cache or a CDN
2) make sure you cleared cache prior to uploading new theme; make sure you updated theme by removing old folder and uploading new theme folder vs “over writing”
3) make sure you fully clear your browser cache to make sure you’re seeing the new style sheets if you did (1) and (2) properly
4) sometimes the widgets reset, and you’d need to redo the widget/sidebar for homepage
5) any changes you made to templates, style.css, functions.php. need to be redone as they are lost on upgrade
hi,
I have tested your css and as you can see in the screenshot it apply’s on post pages as well: http://screencast.com/t/sSYwYx7G0sW
I’m not usre why this does not apply in your case, please send your site’s URL and also add this code into the custom css filed so I can inspect it. Also try to add !important to your css code like this: http://screencast.com/t/2ZXuqKTjPxq
Thanks
Hi,
Thanks Christopher!
@xochipelli
I’m not sure why this is happening, many can cause this, you should consider using the css snippet below to target just chrome and apply the style you want:
@media screen and (-webkit-min-device-pixel-ratio:0) {
/*Chrome CSS here*/
}
Hope this helps!
Thanks
Hi,
You can add a new menu-item like this: http://screencast.com/t/GIEyslQY4Bv and move it to the right using positioning via css, like this: http://screencast.com/t/vywJwLP8aGD
Note that this is just an example, use this method in your case.
You could also add the button like this in the menu-header.php file:
If you don’t have basic php/html/css knowledge we recommend you to hire a freelancer to do this for you because this is custom work and we cannot provide custom work at this time as we work hard on the development, updates, fixes and support. You can always get a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself.
Hope this helps!
Thanks
Hi,
If you refer to this: http://screencast.com/t/tTRTiP2Sy You can hide the image via custom css or you can use block 4 widget from WordPress dashboard > appearance > widgets: http://screencast.com/t/M1VOgltM
Thanks
Hi,
You can follow this example and search for the excerpt function like pointed: https://forum.tagdiv.com/topic/tag-more/#post-22383
Note that you will need more changes for this to work if you don’t have basic php/html/css knowledge we recommend you to hire a developer or a freelancer from sites like: http://studio.envato.com/ if you don’t know how to do it yourself as we cannot offer custom work as we work hard on the development, updates, fixes and support.
Thanks
Thank you Lucian.
im actually still suffering with the Mega Menu.
it still is all going to the left. please check the site again.
how can i make it align and side to the RIght?
also if you checked the main page you will find that we managed to reverse the slider from right to left by messing a bit with the CSS but that resulted in changing the text to left again.
i cant get it done right. can u please also assit with this.?
looking forward to your answer soon
-
This reply was modified 11 years by
kevinbx.
Hello @Lucian,
I set the text position as distance from top (per your comment #24392):
.td-big-slide-background .entry-title {
font-size: 100px;
line-height: 40px;
color: white;
text-align: center;
position: relative;
top: 180px;
}
But when I do this, I lose responsive design – when I view the page on iOS (iPhone 5), the text is not visible. So I tried using % in the top property of CSS:
top: 80%;
but this doesn’t work. Any suggestions on how to keep the design responsive and still be able to position text correctly?
Thanks,
Abhi
Hi,
Please use this css: http://screencast.com/t/JL7Z0xl8q
.home .span8 .td_block6 .td_mod9 .entry-title a {
font-family: Tahoma, Verdana, Geneva, sans-serif !important;
}
Thanks