Go Back   CodingForums.com > :: Client side development > HTML & CSS

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 08-14-2011, 04:57 PM   PM User | #1
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
You guys have been great! But just a few more things to sort before I open my blog?

missgemmalou.blogspot.com

I have set my blog to open a pop up when clicking on the comments section. But when you click on the time of the post or the post title, it takes you to a seperate page with the comments. Can I remove this so just the pop up appears?

If not how can I reduce the size of the '0 comments' text, and change the colour of the post title when on the comment section?


Also, Im trying to change the margin between my posts, I have done this before and it worked fine, but when I try and change it again, its not changing?

Im scrolling down to this:

.post {
margin: 0 0 15px 0;
}

But changing it doesn't change anything anymore? Please help. Thanks.
GemmaLou is offline   Reply With Quote
Old 08-14-2011, 05:09 PM   PM User | #2
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
reduce the 50px. i believe it can be reduced all the way down to 0 without changing the layout of the page. this is line 466 of your html <style>

Sammy12 is offline   Reply With Quote
Users who have thanked Sammy12 for this post:
GemmaLou (08-14-2011)
Old 08-14-2011, 05:13 PM   PM User | #3
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Brilliant Sammy, thanks. Any ideas about the comments section?
GemmaLou is offline   Reply With Quote
Old 08-14-2011, 05:19 PM   PM User | #4
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
Quote:
Originally Posted by GemmaLou View Post
If not how can I reduce the size of the '0 comments' text, and change the colour of the post title when on the comment section?

if your talking about this comment size (show in picture), you have to search for .total and change font-size: 100%; to font-size: 90%; in 1250708095-comment_popup_bundle.css if you can find that file

I think your talking about the other one, let me get that. you put both on one line in your question, but I think you meant two different locations. Sorry all these pictures and stuff takes time





-----

if your talking about the other one (Talking about the little 2 comments?)


you should add it to 1135444933-widget_css_2_bundle.css if you can find it



search for .comment-link and change to :
Code:
a.comment-link {
 white-space: no-wrap;
 font-size: 90%;
}

Last edited by Sammy12; 08-14-2011 at 05:36 PM..
Sammy12 is offline   Reply With Quote
Old 08-14-2011, 05:43 PM   PM User | #5
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
okay so I'm pretty mixed up now since you have two comments sections. If you could provide some pictures as to which titles your talking about that would help.

for the popup window, my best guess is that there is a php generated postID, I was able to get the popup to work, but it doesn't matter, because the ID is wrong. You can try to post this question in the javascript forum, though I believe this is a php problem, in which I cannot see (php files are hidden for security purposes). Best bet is javascript forum first

Last edited by Sammy12; 08-14-2011 at 05:56 PM..
Sammy12 is offline   Reply With Quote
Old 08-14-2011, 06:10 PM   PM User | #6
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Hi, these are what I wanted to change, circled in Red.

The first is the post title and I wanted to change the colour of that.
The second I just wanted to reduce the text size.

GemmaLou is offline   Reply With Quote
Old 08-14-2011, 06:42 PM   PM User | #7
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
1135444933-widget_css_2_bundle.css

add to the end of the css stylesheet

Code:
h3.post-title, .comments h4 {
 font-size: 20px !important;
}
that should change both the title (h3.post-title) and comments size (.comments h4). you could also change them individually.
h3.post-title { font-size: 16px !important; } .comments h4 { font-size: 42px !important; }

---

going to the main question in your op, try posting the pop up question in the javascript forum, though I'm pretty sure its a php problem in which cannot be solved without someone going into your files

Last edited by Sammy12; 08-14-2011 at 06:49 PM..
Sammy12 is offline   Reply With Quote
Old 08-15-2011, 12:03 AM   PM User | #8
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Thank you Sammy! I've worked out the problem with the two comment sections and now there is only the pop up.

I was now wondering if there is a way to change the post title to a non-link? And when its changed, how to change the colour?

And the Labels section on my box below my post, how do I move that up or place to the side of Sharing box?

Thank you.

Last edited by GemmaLou; 08-15-2011 at 12:11 AM..
GemmaLou is offline   Reply With Quote
Old 08-15-2011, 12:22 AM   PM User | #9
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
that link takes you to your profile. are you looking to keep the link target, but change the style?

are you changing your index? things are changing

g2g

Last edited by Sammy12; 08-15-2011 at 12:32 AM..
Sammy12 is offline   Reply With Quote
Old 08-15-2011, 09:17 AM   PM User | #10
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Im looking to change the post titles to a non link. But keep the colour the titles are now.

Also the bottom box of my posts, the grey box, how do I make the two lines of text 'Posted by' and 'Labels' slightly closer together? And still have the grey box the same?

Any chance of keeping the timestamp but making it a non-link?

Just these few things now and I think thats it! Its exciting.

Last edited by GemmaLou; 08-15-2011 at 09:37 AM.. Reason: More Info
GemmaLou is offline   Reply With Quote
Old 08-15-2011, 09:38 AM   PM User | #11
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Sorry. Also to add to the above, how can I reduce the margins between my date header, Post title, Post text and the grey box?

Thanks.
GemmaLou is offline   Reply With Quote
Old 08-15-2011, 10:09 PM   PM User | #12
Sammy12
Registered User

 
Join Date: Jun 2011
Posts: 1,063
Thanks: 12
Thanked 241 Times in 240 Posts
Sammy12 is on a distinguished road
I think you deleted some stuff, possibly some stuff in the db. Like I said in my previous post, content seems to be changing. I'm not able to see much, other than 1 post with 0 comments
Sammy12 is offline   Reply With Quote
Old 08-15-2011, 10:19 PM   PM User | #13
GemmaLou
New Coder

 
Join Date: Aug 2011
Posts: 21
Thanks: 6
Thanked 0 Times in 0 Posts
GemmaLou is an unknown quantity at this point
Hi, thats correct yes, I have deleted some posts and done some editing since. But the problems that still stand are listed here: http://www.codingforums.com/showthread.php?t=235138
GemmaLou is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 07:27 PM.


Advertisement
Log in to turn off these ads.