- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
Hi, i have uploaded the screenshot to my website.
http://davidgoulddesign.co.uk/images/css.png
I want to change where it has the cyan colour. I want to change the background colour and the colour of the horizontal line. I want to keep the purple as the main theme colour. Can you send me the css code to do this?
Thanks
hello,
1. for images – please use http://imgur.com
2. give us a link to your site
For 45 dollars I believe it is not only the developers task to help but the users should help each other also if they can.
But yes the developers should be there and be the foundations of the support.
I am still hoping they will help me with my problem its been 4 days
https://forum.tagdiv.com/topic/featured-video-and-dailymotion/
PS: I believe your theme is only blue because you have the caching on, if you want the caching on you have to edit in the css file, they have answered this in one of the forum threads. They said they will fix it
https://forum.tagdiv.com/topic/theme-speed/#post-1265
https://forum.tagdiv.com/topic/theme-speed/#post-1348
Hello,
Replace the font from style.css for menu with your imported font
http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp
Thanks
Also, one last thing. I can’t seem to get rid of the list arrow next to the qtranslate flags. I’ve put this code in the editor but the arrow still remains;
.qtrans_language_chooser { list-style-type:none }
Thanks
David
Is there a way i can upload an image so i can show you what i mean?
Hello,
The child theme work at this moment only with CSS.
On all updates we want to publish a patch with changed files and check if we update the files modified by you.
Thanks
Hello,
Your site doesn’t work. Try to catch the exact selector from CSS where you want to add that border.
Hello, Reply via themeforest
Other clients use qTranslate to have site in multiple languages.
Try with important
background-color: #C6B28F !important;
Hello,
Just add this to style.css
.page-nav .pages {
display: none;
}
Thanks
Hi,
Do you know when you will be able to reply as my client wants to get his site live asap?
Many thanks
David
Hello,
try this at the end of style.css :
.thumb-wrap .entry-thumb {
border:2px solid #4db2ec;
}
-
This reply was modified 12 years by
Radu.
Hello,
That color is from Theme customzier -> Colors on Theme color. If you want another color you can change it from CSS
Thanks
Hello,
Edit style.css here: http://screencast.com/t/PpdsuorIP1
Thanks for the message!
Hello,
You can add the logo on menu, edit menu_header.php file http://screencast.com/t/glaGrnIWhUBr add your logo there and hide it when you are on mobile using this in style.css
/* responsive phone */
@media (max-width: 767px) {
use display:none;
}
Thanks
For example i have added this to the style.css in the backend but nothing changes;
.block-title a, .block-title span, .td-tags a:hover, .td-scroll-up-visible, .td-scroll-up, .sf-menu ul .current-menu-item > a, .sf-menu ul a:hover, .sf-menu ul .sfHover > a, .td-rating-bar-wrap div, .iosSlider .slide-meta-cat, .sf-menu ul .current-menu-ancestor > a, .td-404-sub-sub-title a, .widget_tag_cloud .tagcloud a:hover, .td-mobile-close a, ul.td-category a, .td_social .td_social_type .td_social_button a, .dropcap {
background-color: #C6B28F;
}
Hello,
Add this to style.css
.td-slide-item-sec .td-sbig-title-wrap {
background-color: none !important;
}
.td-sbig-title-wrap .td-sbig-title {
background-color: none !important;
}
Thanks @mbasche
Salut
Cum ai folosit reclama sus in header pe text ad spot cu codul acolo sau ai folosit din Theme – Options pentru Google adsense? http://screencast.com/t/YWoaM0Deyb
Creaza un spot la fel ca si cel din sidebar la dimensiunile dorite si selecteaza spotul din Theme customizer.
Reclamele Google se incarca doar la refrash daca schimbi dimensiunea la browser.
Titlurile se decaleaza pentru ca sunt prea lungi daca vrei sa pot face cu font mai mic pentru tablete, telefoane foloseste acest css:
/* responsive portrait tablet */
@media (min-width: 768px) and (max-width: 1018px) {
adauga aici marime font pt tablete
}
/* responsive phone */
@media (max-width: 767px) {
adauga aici merime font telefoane
}
Frumos site!
Mersi
Hi,
Is there a place in the backend that i can change the CSS styles?
Also, i see you have a translate area. I will need the site to be translated in French so how would i do this. Is there an option where you can have a french flag or something so when you click it, it translates all the contents on the site?
Thanks
David
Hello,
You can make it via CSS, inspect it take the selector and add in style.css like here: http://screencast.com/t/VVp3EgedPku
Hi,
Here is what I have been able todo so far:
http://staging1.wp.gem-diamonds.com/news/one-of-a-kind-10-carat-royal-blue-diamond-for-sale-in-new-orleans
1) re-sized the image in functions.php
//featured image
$td_crop_features_image = td_util::get_customizer_option('crop_features_image');
if ($td_crop_features_image == '') {
//add_image_size('featured-image', 700, 0, true);
add_image_size('featured-image', 320, 0, true);
} else {
//add_image_size('featured-image', 700, 357, true);
add_image_size('featured-image', 320, 180, true);
}
2) added some custom css in wp-admin/themes.php?page=editcss
To make the image float on the right (not a good way does not play nice responsive, please tell me a better way)
.post .thumb-wrap {
text-align: center;
margin-bottom: 5px;
background-color: #f2f2f2;
float: right;
margin-left: 10px;
}
3) edited /wp-content/themes/Newspaper/includes/app/modules/module_modifier/td_module_blog.php
so that video pages show featured image
function get_image($thumbType, $image_link = '', $image_excerpt = '') {
global $page;
if (!empty($page) and $page > 1) {
return;
}
//echo 'raxxx' . $page;
if (td_util::get_option('tds_show_featured_image') == 'hide') {
return;
}
if (get_post_format($this->post->ID) == 'gallery') {
return;
// }
// if (get_post_format($this->post->ID) == 'video') {
//if it's a video post...
// $td_post_video = get_post_meta($this->post->ID, 'td_post_video', true);
// $td_video_support = new td_video_support();
// if (!empty($td_post_video['td_video'])) {
// return $td_video_support->renderVideo($td_post_video['td_video']);
// }
} else {
//if it's a normal post, show the default thumb
//get the full url
$attachment_id = get_post_thumbnail_id($this->post->ID);
$td_temp_image_url = wp_get_attachment_image_src($attachment_id, 'full');
$image_excerpt = get_post_field('post_excerpt', $attachment_id);
if (!empty($image_excerpt)) {
$image_excerpt = '<p class="wp-caption-text td-featured-image-caption">' . $image_excerpt . '</p>';
}
$post_image = '';
if (!empty($td_temp_image_url[0])) { //if we have a full url, link the image to that
$post_image = parent::get_image($thumbType, $td_temp_image_url[0], $image_excerpt);
} else {
$post_image = parent::get_image($thumbType, '', $image_excerpt);
}
return $post_image;
}
}
4) edited /wp-content/themes/Newspaper/includes/content_builder/td_module.php
so that only on single video pages a click on image would scroll to video
$buffy .= '<div class="thumb-wrap">';
if (current_user_can('edit_posts')) {
$buffy .= '<a class="td-admin-edit" href="' . get_edit_post_link($this->post->ID) . '">edit</a>';
}
if ((get_post_format($this->post->ID) == 'video') and (is_single($post))){
$buffy .='<a href="#video" rel="bookmark" title="' . $this->title_attribute . '">';
} else {
$buffy .='<a ' . td_util::if_show($show_colorbox_class, 'class="td-featured-img"') . ' href="' .
$image_link . '" rel="bookmark" title="' . $this->title_attribute . '">';
}
Can you please help me with the following and tell me if I could have done it better
- to make these things template features/options so that when I update it will not break, its just a few on and off switches
- option to make featured image float left or right, while being nicely responsive
- option to show featured image on video pages instead of replacing it with featured video
- option to have featured image of single video pages to scroll to video when clicked
- how to make the scroll to video nicer, also your scroll to comments (so that it scrolls and doesn’t jump)
- a feature to have the video icon as a image watermark so that we will have to call one less image in template, will be faster and also for facebook thumnail the video icon will be in the image
- why have you added this
.format-video p { padding-top: 11px !important; }
Thank you
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
-
This reply was modified 12 years by
dalandau.
Hello,
If you use less files you have to compile the less file. Make the changes in style.css if you want to customize something.
Hello
Sorry for long delay!
Is from that p that is created everywhere. See here: http://screencast.com/t/WAWXDBe6roey Do you use some editor plugin? Tru to deactivate some plugins, something create that p in your editor.
Thanks
-
This reply was modified 12 years by
Marius.
would it be possible for me to add the get_the_post_thumbnail() or the_post_thumbnail() functions on the video format posts? So to basically have it remove your get image function and add the get_the_post_thumbnail() or the_post_thumbnail() functions so that the plugin would replace that on video format posts.
You told me that the video format post were used to remove the image and to add the video icon on thumbnail, but I notice it messes with some css (see margin of text). Is that intentional?
Thank you