Search Results for 'css'

Results from the Forum
Lucian
tagDiv Staff

Hi,

Please modify the height of the footer using this custom css: http://screencast.com/t/WTkBL21Q7n

.td-full-layout .td-footer-wrap .td-grid-wrap, .td-boxed-layout .td-footer-wrap .span12 .td-grid-wrap {
padding: 69px 13px 27px 13px !important;
height: 320px !important;
}

You can also modify the padding to the footer by changing the value of padding top an bottom which I highlighted in the screenshot.
If this doesn’t work for you please let me know and send your site’s URL so I can inspect this and provide a solution, also provide some details about how you would like to modify it.

Thanks

mboydnv
Participant
#0

Re: version 4.3

I’m wondering if there is a rogue javascaript tag running loose

<script type="text/javascript"></script>

In the Theme Panel/Custom Javascript:

I have pasted my code beginning with a comment tag and then the opening javascript tag, it looks like this:

<!-- Begin pap click code -->
<script type="text/javascript"><!--
document.write ... ... etc

When I view the source after loading the page I see an extra tag:

<strong><script type="text/javascript"></strong><!-- Begin pap click code -->
<script type="text/javascript"><!--
document.write ... ... etc

And of course there is an extra closing tag also.

<strong></script></strong><link rel='stylesheet' id='td-bootstrap-css' href='h ...

The possible extra tags are found just after this code:

    <!--
        Theme: Newspaper by tagDiv 2014
        Version: 4.3 (rara)
        Deploy mode: deploy
        Speed booster: v2.5

    -->

    
            <style type="text/css" media="screen">
                .post .meta-info {
display: none;
}

.post .td-post-text-content {
margin-top: 5px;
}

.single ul {
list-style-image: url('/images/list-style-check.png');
}

.single ul li {
line-height: 30px;
}
                </style><strong><script type="text/javascript"></strong><!--

Am I to paste my tracking code without the opening javascript tag? Seems strange to do this.

Any how I am having trouble with the sales tracking of my site since I pasted the tracking code in the theme panel and I am wondering if it’s becuase of a superfluous piece of extra code..i.e. an extra javascript opening and closing tag.

Please advise.

simchris
tagDiv Member

@mehedi… usual way; custom CSS on the element

.block-title {line-height: 28px;background-color:#000000}

simchris
tagDiv Member

Google is a great search tool… as this is a common practice easily researched which has nothing to do with this theme. Learning these kinds of tricks is part of basic web development using Google fonts. 😉

However, the basics are

1) search/replace all font mentions in the style.css to use the Google font you wish to use; in my case ‘Open Sans’

2) go to the Google fonts site, and find the font you want in the weights you want, in my case ‘Open Sans’ and get the code from them to place into your website
https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans
in my case, normal, normal italic, bold, bold italic

3) choosing the above gives you code you’d normally place in the head of your web doc, or footer for some setups
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700' rel='stylesheet' type='text/css'>

The above is essentially what the theme loads except has various hooks and functions to let you select those in the admin panel; however you want to actually instead, take that CSS and put at bottom of your own style.css file and it can be done after minification (if you’re doing that) so you don’t minify this code.

So, basically take that URL and open in a web browser; which should download it to your hard drive;

4) then, open that and it will give you the CSS

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(http://fonts.gstatic.com/s/opensans/v10/cJZKeOuBrn4kERxqtaUH3T8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(http://fonts.gstatic.com/s/opensans/v10/k3k702ZOKiLJc3WVjuplzHhCUOGz7vYGh680lGh-uXM.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local('Open Sans Italic'), local('OpenSans-Italic'), url(http://fonts.gstatic.com/s/opensans/v10/xjAJXh38I15wypJXxuGMBobN6UDyHWBl620a-IRfuBk.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  src: local('Open Sans Bold Italic'), local('OpenSans-BoldItalic'), url(http://fonts.gstatic.com/s/opensans/v10/PRmiXeptR36kaC0GEAetxjqR_3kx9_hJXbbyU8S6IN0.woff) format('woff');
}

PLACE the above, or comparable code for the fonts you’re using, into bottom of your CSS file. If you’re running your site as https, then change URL to https.

5) using the info from my previous post in this thread; remove the section in the functions.php file which loads the Google fonts – so the old “calls” to the Google fonts won’t “print” on your HTML pages.

6) finally, if necessary, make sure you have all the font selections in the theme panel set to “default” as choosing any Google font won’t work, obviously

And obviously you would want to ensure your caching is off, mod_Pagespeed is ‘off’ if using that, and you’d likely need to clear your cache in your web browser and hit refresh couple of times to see the site properly with the change.

Kaboom! Mischief managed.

simchris
tagDiv Member

Sort of fixed #3 with custom CSS

.header-content-rec{padding-bottom:15px; margin-bottom:10px;}

TheMediumUTM
tagDiv Member

Yes, that’s to be expected, because the default settings are not what you want. Those include minifying CSS and JS, which will not work with this theme. Please read the docs or the dozens of forum posts on the subject… The plugin and the theme are not incompatible, and if you want the speed you’re looking for, you need a caching plugin!

There are other plugins that don’t even have options for minifying, such as WP Super Cache. But they’ll have other kinks to work out…

simchris
tagDiv Member

Yes, you need to load the google fonts css at end of your style.css file and remove calls to google from your functions.php file

simchris
tagDiv Member

Yes, I see that also. The “z-index” for the mega menu appears to be lower than the Google ad when you have the logo + ad below menu setup.

[menu]
[logo][ad]

You likely need to increase the z-index for the mega-menu. I’m not using the mega-menu at this time, so not sure what class would need to be wrapped, and added to the custom CSS panel.

cstyn
tagDiv Member
Eliminate render-blocking JavaScript and CSS in above-the-fold content

Your page has 6 blocking CSS resources. This causes a delay in rendering your page.
None of the above-the-fold content on your page could be rendered without waiting for the following resources to load. Try to defer or asynchronously load blocking resources, or inline the critical portions of those resources directly in the HTML.
Optimize CSS Delivery of the following:
http://fonts.googleapis.com/…-ext,greek,vietnamese,latin-ext,cyrillic
http://fonts.googleapis.com/…c-ext,greek-ext,greek,latin-ext,cyrillic
http://fonts.googleapis.com/…et=latin,cyrillic-ext,latin-ext,cyrillic
http://fonts.googleapis.com/…swald:400,300,700&subset=latin,latin-ext
http://fonts.googleapis.com/…-ext,greek,vietnamese,latin-ext,cyrillic
http://fonts.googleapis.com/…ily=Vollkorn:400italic,700italic,400,700

How To fix this ?

TheMediumUTM
tagDiv Member

Sorry, but you should without question use a cache. It will only mess things up for your visitors if you use the wrong settings. W3 Total Cache without minifying javascript or CSS is safe. This issue has been brought up and this solution recommended in Newspaper’s docs and the forum many times. 🙂 It will pretty much do a page cache, expiry headers, and basic (but highly necessary) compression.

W3 Total Cache can also be combined with a service like Cloudflare, which serves your site to visitors from its servers rather than your own. It speeds up delivery of some resources and helps with your server response time. (Pagespeed reports that your server responded in a massive 3.7 seconds.) I use this setup too.

A plugin like EWWW Image Optimizer will help with your optimize images problem. Note that you’ll want to do a one-time bulk optimization of your media library, which will take a long time, but after that it should just optimize on upload.

Feel free to ask for more details on the above steps. Once you try all of them, check your scores again. They will have greatly improved.

These are the steps that require little or no technical knowledge, but uf you still need more, start reading the excellent posts by Christopher Simmons and others in the sticky Pagespeed thread.

Best of luck!

TheMediumUTM
tagDiv Member

No problem. 🙂

simchris
tagDiv Member

<LOL>
welcome to my world; I did the same thing!

I might switch it back on at some point, but right now I found with good optimizations, mod_pagespeed, and decent speed server, the CDN caused more problems. My fave was the CSS not loading for FontAwesome in IE11/Win7-64 totally randomly. (sigh)

Some people have great success with using a CDN, though. It gets even tricker when going to https, which we’re doing now, where you need SSL cert for CDN, wildcard SSL cert for your domain to use a subdomain like cdn.mysite.xyz with A/C name record, and then sharding and/or domain origin mapping with mod_pagespeed …. ouch!

(for those tuning in …. not responsible for your head exploding reading that last paragraph! 🙂 )

mrpb
tagDiv Member

Hi Christopher,

I tried almost everything. But the issue is either theme or mod_pagespeed is scaling images from css and not using thumbnails.

What should i do?

Maddy

ctomlin
tagDiv Member

Thanks, that fixed the problem! Funny how simple stuff frequently causes the biggest issues. I appreciate your help!

TheMediumUTM
tagDiv Member

Try adding the !important tag to each rule:

background-color: #fff !important;

etc.

ctomlin
Participant
#0

Greetings and thanks again for a GREAT theme!

I’m having trouble getting rid of the form gray background color that contains the Contact Form 7 form. I’ve created modified CSS, placed it in the Theme Panel CSS Custom CSS area, but somehow the modified CSS keeps getting overwritten by the original CSS (see screen shot – http://screencast.com/t/YJPjfeBlZ)

NOTE: I’m using a Child Theme of Newspaper, not the actual theme itself.

Please help me identify how to change the background that current is being controlled by the .forms-actions CSS. Thanks in advance!

schauvin
tagDiv Member

Lucian:

I don’t know what I did wrong. Please check these:

1. I removed the code from
https://www.evernote.com/shard/s250/sh/1e344332-217f-4bad-8654-521d220cbb5c/c4fc56dee9387eac0a7cacaf53a23047

2. I pasted the new code and changed the class from “span9″ to “span8″
https://www.evernote.com/shard/s250/sh/cf1d922b-94f1-49aa-986d-3002a52fcb58/5a9086d96f63d8473f46dd618ab1cda9

3. I Added the css
https://www.evernote.com/shard/s250/sh/a6430983-feef-4141-8dd4-c2b3e49409ab/56e5f0eb455d5e61cde62736d62830cb

4. And now you can see that the search box is not in the top menu or any other place.

https://www.evernote.com/shard/s250/sh/39731376-6a1f-4287-8eeb-429ce4583d4a/62f7eef8c907c8284c96d704bbb3b2ad

You can also see that the last category is being push below.

Any help will be greatly appreciated.

Thanks.

paulberrow
tagDiv Member

Yes, it was in my theme panel. I moved all the code from theme panel an added it to css file and with iphone it’s ok now..the same with Opera, but i don’t know what else to do, maybe it won’t be a big problem for users i hope.
I’ll try one more thing, to move all this code to main theme..

Btw, when i add or change something in theme panel all this code appears pretty much on the top of my source. So maybe for speed it’s better to add it to css file? What would you suggest about it?

craigmc
Participant
#0

Hi,

Could someone confirm the best way to set the meta-info font used/ size and color underneath the blocks to show date / author & size by css as can’t seem to find where to set it.

It’s current seems to be set to Ubuntu – 12px

meta

Thanks

Lucian
tagDiv Staff

Hi,

Use this css to fix this: http://screencast.com/t/Mi4oTYjUoIdG
Change the list style as you like.

.page .insideWrapperFull ul, ol {
margin: 0px 0 0px 0;
list-style-type: mongolian;
}

Thanks

Lucian
tagDiv Staff

Hi,

I have checked your site and found no lists or bullets there. Please make sure you add your list like this: http://screencast.com/t/4mwnOLNUxWZE and use this custom css and this property to change the list style as you like: http://www.w3schools.com/cssref/pr_list-style-type.asp
Hope this helps!

Thanks

Lucian
tagDiv Staff

Hi,

Please use this css: http://screencast.com/t/TuVPxoup

.wpcf7 .wpcf7-form input, .wpcf7-textarea {
background-color: #DF517F !important;
}

Thanks

Lucian
tagDiv Staff

Hi,

Use this css: http://screencast.com/t/1cVB1gzS

.alignright, .alignleft {
width: 50%;
float: left;
}
.alignright {
text-align: right;
}
.attachment .mgbox {
clear: both;
}

Thanks

hareshtilani
Participant
#0

Hi there,

My website is like already (http://www.balukoo.com), but I cannot find a solution to change the background of the colours in the text input fields of my Contact-Form 7 widget (which is available in 2 slightly different versions). You can see the widgets at:

http://www.balukoo.com/get-in-touch/, and
http://www.balukoo.com/submit-a-video/

How do I change it? If there is a Custom CSS required, could you help me out as well? Because I’ve tried a number but nothing works.
Thanks.

Haresh

Lucian
tagDiv Staff

Hi,

If the color is set using the block settings panel then it will be added as an inline style so it can’t be overwritten. If you remove that setting you can use css to change the color of it as you like:
Remove the color set from block settings and use this css to change the color back to that color:

.td-grid-wrap .span4 .td_block5 .block-title a {
color:#900000 !important;
}

Should work like it dose for the rss widget which it doesn’t have any inline style added! http://screencast.com/t/LY5tTZCtS

Thanks

Viewing 25 results - 31,151 through 31,175 (of 33,436 total)