Search Results for 'css'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

You have to the code to move css/js on each function not at the end of content, please check this – http://screencast.com/t/0dPn8HH0mhttp://screencast.com/t/bdNWW3avne

Thanks!

simchris
tagDiv Member

I personally don’t use child theme due to CSS redirect and unexpected gremlins…. oh, like in this case 🙂

simchris
tagDiv Member

I don’t think you can. It’s a “wide” them which then is responsive to fit smaller devices.

You would have to change all the modules, layouts, CSS, etc. — not simple.
This is purpose of the brother/sister NEWSMAG theme — more narrow layout.

Alin [tagDiv]
tagDiv Staff

Hi,

The above css is for menu search button, please try this custom for you search template button – http://screencast.com/t/uXCePWPPMs

.search-page-search-wrap input[type=submit]{
background-color:#006bb3;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Please use this custom css:


.td-head-form-search-wrap input[type=submit]{
background-color:#006bb3;
}

It should work like this:
http://screencast.com/t/SVIX1HGoI
http://screencast.com/t/T1PqPggfSR

Andrei L.
tagDiv Member

Hi

Please use this custom css in Theme Panel -> Custom Css:

.sf-menu > .current-menu-item > a, .sf-menu > .current-menu-ancestor > a, .sf-menu > .current-category-ancestor > a, .sf-menu > li > a:hover, .sf-menu > .sfHover > a {
color: #006bb3;
}

It should work like this: http://screencast.com/t/3vGXnOxI

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css in Theme Panel > Custom Css as the theme doesn’t have an option to change this color: http://screencast.com/t/iSWLhhucWse8

.td-module-comments a {
background-color: red;
}
.td-module-comments a:after {
border-color: red transparent transparent transparent;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Please use this custom css:

.block-title > span{
background-color:#006bb3;
}

http://screencast.com/t/QuHtr6lR2w3V

Alin [tagDiv]
tagDiv Staff

Hi,

Please add also this custom css in Theme Panel > Custom Css for featured image caption: http://screencast.com/t/wZrcRlmI

.td-post-featured-image:hover .wp-caption-text {
opacity: 1 !important;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

1. You can change or remove the background color for post style 11 using this custom csshttp://screencast.com/t/DSlNSv9BGCy

.td-video-template-bg {
background-color: rgba(199, 88, 88, 0.66);
}
.td-video-template-bg-small {
background-color: rgba(199, 88, 88, 0.66);
}

Also if you wnat to change the color for these elements on post style 11(breadcrumbs for all articles) – http://screencast.com/t/NVN9nhPou0es

.td-post-template-11 .td-post-title .td-post-author-name, .td-post-template-11 .td-post-title .td-post-date, .td-post-template-11 .td-post-title .td-post-comments a, .td-post-template-11 .td-post-title .td-post-views {
color: #e6e789 !important
}
.td-post-template-11 .td-post-title .td-post-author-name a {
color: #e6e789;
}
.single .entry-crumbs,.entry-crumbs a {
color: red;
}

2. If you want to remove gradient from featured image on post style 3 please check this custom css in Theme Panel > Custom Css: http://screencast.com/t/noSEG5Iw

.single_template_3 .td-image-gradient:before {
display: none;
}

Or if you don’t want to remove gradient and just to change it to a lighter color this is the default background color so you can change it:

.single_template_3 .td-image-gradient:before {
background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.8)));
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}

Hope this helps!

Lucian
tagDiv Staff

Hi,

1. I thing you can achieve the result you want by using one of the grid layout we now have and use custom css to hide the additional informations from the post image so you just need to add the grid you want then use the filter section to chose the posts you want to display in it: http://screencast.com/t/lJXzuJfpwheE then use a css like this to hide additional information from the images leaving just the titles which will look like this: http://screencast.com/t/OA8dItmyN

If this is what you want you can sue the css code below to hide the additional descriptions from the grid:

.td_block_big_grid_8 .td-big-grid-post .td-post-category, .td_block_big_grid_8 .td-big-grid-post .td-module-meta-info {
display: none;
}

.td_block_big_grid_8 .td-big-thumb .td-big-grid-meta {
margin: 0 0 40px 20px !important;
}

You can do it for grid 7 the same way and change the css classes from 8 to 7: http://screencast.com/t/nBpzWSy3MhE

2. If you refer to these social icons: http://screencast.com/t/Zy2WXthZS those icons can’t be added anywhere else other than the top menu.

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

Not sure why you have this issue, the logo image should appear also on mobile devices. Do you have any custom css? Please try this custom css in Theme Panel > Custom Css: http://screencast.com/t/HCTrAhTWKPM

@media (max-width: 767px){
.header-logo-wrap img {
display: block !important;
}
.span12.header-logo-wrap {
display: block !important;
}
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please disable all your plugins except of Visual Composer and remove any css/js compression, clear cache and see if you still have this issue. These js errors usually are caused by plugins that conflict with theme javascript, also please make sure that you use the latest version of the theme 6.2.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Do you want to translate next to prev? Please check Translations section from Theme Panel – http://screencast.com/t/dHDAmJPvhttp://screencast.com/t/a3vcBL0t

Try this custom css to change the arrows – http://screencast.com/t/04o11NOQh

.td-icon-menu-right:before {
content: '\e80c';
}
.td-icon-menu-left:before {
content: '\e80d';
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Please add an extra class to your text block – http://screencast.com/t/Me5TQvLc0 and add this custom css in Theme Panel to reduce margin bottom for your text block – http://screencast.com/t/MttminpQOn

.test {
margin-bottom: 10px;
}

Thanks!

MrOrsh
Participant
#0

Just updated to the 6.2 version from 6.1 and now at every page the theme first loads the theme defaults when it comes to colors and fonts, these stay loaded for about a secound or two and them my own changes to colors and fonts is applied.

This makes the whole page “jump” and change fonts and colors from the default ones to my custom ones. No custom CSS changes made for fonts or colors other than links. Used the built in accent color.

Please refer to my page so see the issue (also try one of the articles to see the fonts change). This was NOT an issue with the 6.1 version, so something must have changed to cause this. Looks extremely tacky :-/

enkelteknik.se
enkelteknik.se/article example

Alin [tagDiv]
tagDiv Staff

Hi,

The double quotes are added there like an image if you want to change them you will have to use custom css in Theme Panel > Custom Css and replace the image – http://screencast.com/t/ZlxvPxQVK

.td-post-content .td_pull_quote p:before{
background:url("http://www.mythoughtsmywords.org/images/double-quotes.png") no-repeat scroll 0 0 !important;
background-size: 20px 20px !important;
}
.td-post-content .td_pull_quote p:after {
background:url("http://image.shutterstock.com/display_pic_with_logo/577306/235529839/stock-vector-quotation-mark-symbol-double-quotes-at-the-end-of-words-quote-sign-icon-isolated-on-white-235529839.jpg") no-repeat scroll 0 0 !important;
background-size: 20px 20px !important;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Please edit top-menu.php and add this code instead of #: http://screencast.com/t/ceFDfsjFr

' . get_author_posts_url($current_user->ID) . '

Also add this custom css to change cursor from default, in Theme Panel > Custom Css: http://screencast.com/t/Vy4rn1kjSq

.td_user_logd_in{
cursor: pointer !important;
}

Thanks!!

Alin [tagDiv]
tagDiv Staff

Hi,

Please add also text align to the above code like this – http://screencast.com/t/UwScMf9b6Io

text-align: left;

I did not tell you, but I guess that you know that using this code it will affect all other qoute formats so on your future articles you will have to use blockquote to have this effect – http://screencast.com/t/J70xQJKYglFr as using other quotes formats – http://screencast.com/t/8wz2Ty8ekA1 will be affected by this csshttp://screencast.com/t/oAS2C9lcT

Thanks!

mhendiz
Participant
#0

Hi all,

İn this page https://forum.tagdiv.com/how-to-make-the-site-faster/

i used “4. Remove render blocking css/js – using the TagDiv Speed Boosterplugin (Advanced Users)”

but when i used this codes;
$this->move_js_to_footer(‘FILE-ID’);
$this->move_style_to_footer(‘FILE-ID’);

in wp admin page show me

Fatal error: Using $this when not in object context in /home/muhendisbeyinler/public_html/wp-content/plugins/td-speed-booster/td-speed-booster.php on line 283

how can i fix?

Alin [tagDiv]
tagDiv Staff

Hi,

I have also tested this and it works – http://screencast.com/t/33YhvV5zkgUshttp://screencast.com/t/wE97ibc4N but on modules/blocks it will not be displayed using html/css code – http://screencast.com/t/U7ZMIOYWYabi it was not designed for this.

Thanks!

NP Comm
tagDiv Member

Hmm, not insanely hard as all the code is being outputted already(as stated in the above post).

Anyway, if someone is looking to do this it isn’t so bad.

https://jsfiddle.net/7y22gcax/

Throw the JS in the header and the CSS in a style sheet and boom, mostly done. Very little JS to make the output work, the rest is CSS as per your needs. Good luck!

Lisborg
tagDiv Member

Hi Alin,
I am not using custom css. I just turn date on/off under Post Settings -> Show date. I would like to turn date on only on posts in the news category. Is that possible? Here is link to page http://naturguide.dk/
Thanks,

Alin [tagDiv]
tagDiv Staff

Hi,

Did you hide the the date on all modules using custom css and you want to appear only on that specific category? Please provide more details about your customizations and also provide a link so we can take a look. You could use category’s unique class – http://screencast.com/t/uFnub8GE

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately you cannot block this using custom css, but you can try to remove this function from td_data_source.phphttp://screencast.com/t/woVwnjCQB

Thanks!

Viewing 25 results - 27,851 through 27,875 (of 33,436 total)